Skip to content

Commit

Permalink
Merge pull request #3838 from storybooks/tmeasday/got-disable-wrong
Browse files Browse the repository at this point in the history
Small readme bugfix
  • Loading branch information
shilman authored Jul 5, 2018
2 parents dbf243d + 6b52885 commit fa9779e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions addons/jest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,11 @@ storiesOf('MyComponent', module)

### Disabling

You can disable the addon for a single story by setting the `jest` parameter to `{disabled: true}`:
You can disable the addon for a single story by setting the `jest` parameter to `{disable: true}`:

```js
storiesOf('MyComponent', module).add('Story', () => <div>Jest results disabled herek</div>, {
jest: disabled,
storiesOf('MyComponent', module).add('Story', () => <div>Jest results disabled here</div>, {
jest: { disable: true },
});
```

Expand Down

0 comments on commit fa9779e

Please sign in to comment.