Merge pull request #2376 from sandinosaso/documentation/addon-jest

Fix small typos on Jest addon documentation.
This commit is contained in:
Norbert de Langen 2017-11-26 13:13:07 +01:00 committed by GitHub
commit 36361e7cb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -78,7 +78,7 @@ In your `story.js`
```js
import jestTestResults from '../.jest-test-results.json';
import withTests from '@storybook/addon-jest';
import { withTests } from '@storybook/addon-jest';
storiesOf('MyComponent', module)
.addDecorator(withTests(jestTestResults, { filesExt: '.test.js' })('MyComponent', 'MyOtherComponent'))
@ -91,7 +91,7 @@ Or in order to avoid importing `.jest-test-results.json` in each story, you can
```js
import jestTestResults from '../.jest-test-results.json';
import withTests from '@storybook/addon-jest';
import { withTests } from '@storybook/addon-jest';
export default withTests(jestTestResults, {
filesExt: '.test.js',

View File

@ -98,7 +98,7 @@ const Content = glamorous(({ tests, className }) => (
<div className={className}>
{tests.map(({ name, result }) => {
if (!result) {
return <NoTests>This story has tests configures, but no file not found</NoTests>;
return <NoTests>This story has tests configured, but no file was found</NoTests>;
}
const successNumber = result.assertionResults.filter(({ status }) => status === 'passed')