Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandrHoroshih committed Apr 30, 2023
1 parent 804c5ce commit 3c4f16f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ describe("Redux DevTools Effector adapter", () => {
name: "Test app",
scope,
trace: true,
stateTab: true,
batch: false,
});

expect(init.mock.calls.length > 0).toBe(true)
expect(init.mock.calls.length > 0).toBe(true);
expect(init.mock.calls).toMatchInlineSnapshot(`
[
[
Expand All @@ -36,7 +38,7 @@ describe("Redux DevTools Effector adapter", () => {
await allSettled(buttonClicked, { scope });
await allSettled(buttonClicked, { scope });

expect(send.mock.calls.length > 0).toBe(true)
expect(send.mock.calls.length > 0).toBe(true);
expect(send.mock.calls).toMatchInlineSnapshot(`
[
[
Expand Down

0 comments on commit 3c4f16f

Please sign in to comment.