mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Merge pull request #2376 from sandinosaso/documentation/addon-jest
Fix small typos on Jest addon documentation.
This commit is contained in:
commit
36361e7cb6
@ -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',
|
||||
|
@ -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')
|
||||
|
Loading…
x
Reference in New Issue
Block a user