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 97a5fce commit f4850a3Copy full SHA for f4850a3
docs/rules/expect-expect.md
@@ -53,11 +53,11 @@ option:
53
import { expectSaga } from 'redux-saga-test-plan';
54
import { addSaga } from '../src/sagas';
55
56
-test('returns sum', () => {
+test('returns sum', () =>
57
expectSaga(addSaga, 1, 1)
58
.returns(2)
59
.run();
60
-});
+);
61
```
62
63
Examples of **correct** code for the
@@ -69,9 +69,9 @@ Examples of **correct** code for the
69
70
71
72
73
74
75
76
77
0 commit comments