We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a507d62 commit 83e438dCopy full SHA for 83e438d
tests/derived.test.ts
@@ -35,6 +35,7 @@ describe("derived", () => {
35
36
expectSpy(spyEffect, 1, { args: [] });
37
expectSpy(spyDerived, 1, { args: [], result: 2 });
38
+ state.a = 3;
39
await waitScheduler();
40
expectSpy(spyEffect, 2, { args: [] });
41
expectSpy(spyDerived, 2, { args: [], result: 6 });
0 commit comments