Skip to content

Commit 202815e

Browse files
Varixowmertens
authored andcommitted
test: enable all e2e test, fix unit tests type problem
1 parent d34a20a commit 202815e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/qwik/src/core/shared/shared-serialization.unit.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -709,8 +709,8 @@ describe('shared-serialization', () => {
709709
const orig = { a: { b: true }, orig: undefined as any };
710710
orig.orig = orig;
711711
const store = createStore(null, orig, StoreFlags.RECURSIVE);
712-
store.c = store; // circular ref
713-
store.a.c = store;
712+
(store as any).c = store; // circular ref
713+
(store.a as any).c = store;
714714
expect(await dump([orig, store])).toMatchInlineSnapshot(`
715715
"
716716
0 Array [

0 commit comments

Comments
 (0)