Skip to content

Commit

Permalink
chore(docs): fixed typo (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
hulkish authored and SimenB committed Aug 25, 2018
1 parent 97a5fce commit f4850a3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/rules/expect-expect.md
Expand Up @@ -53,11 +53,11 @@ option:
import { expectSaga } from 'redux-saga-test-plan';
import { addSaga } from '../src/sagas';

test('returns sum', () => {
test('returns sum', () =>
expectSaga(addSaga, 1, 1)
.returns(2)
.run();
});
);
```

Examples of **correct** code for the
Expand All @@ -69,9 +69,9 @@ Examples of **correct** code for the
import { expectSaga } from 'redux-saga-test-plan';
import { addSaga } from '../src/sagas';

test('returns sum', () => {
test('returns sum', () =>
expectSaga(addSaga, 1, 1)
.returns(2)
.run();
});
);
```

0 comments on commit f4850a3

Please sign in to comment.