Fix tests

This commit is contained in:
Marcel Mraz 2025-04-29 22:50:15 +02:00
parent eb9b6ac837
commit 09135e827e
No known key found for this signature in database
GPG key ID: 4EBD6E62DC830CD2
11 changed files with 18432 additions and 18201 deletions

View file

@ -6,7 +6,6 @@ import {
isTestEnv,
randomId,
Emitter,
deepFreeze,
} from "@excalidraw/common";
import type { DTO, ValueOf } from "@excalidraw/common/utility-types";
@ -427,7 +426,6 @@ export class DurableIncrement extends StoreIncrement {
public readonly delta: StoreDelta,
) {
super("durable", change);
deepFreeze(this);
}
}
@ -437,7 +435,6 @@ export class DurableIncrement extends StoreIncrement {
export class EphemeralIncrement extends StoreIncrement {
constructor(public readonly change: StoreChange) {
super("ephemeral", change);
deepFreeze(this);
}
}