diff --git a/addons/jest/README.md b/addons/jest/README.md index 67e9b65a0f0..5ccc32d1829 100644 --- a/addons/jest/README.md +++ b/addons/jest/README.md @@ -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', diff --git a/addons/jest/src/components/Panel.js b/addons/jest/src/components/Panel.js index deda4999b70..9c277c3c101 100644 --- a/addons/jest/src/components/Panel.js +++ b/addons/jest/src/components/Panel.js @@ -98,7 +98,7 @@ const Content = glamorous(({ tests, className }) => (
{tests.map(({ name, result }) => { if (!result) { - return This story has tests configures, but no file not found; + return This story has tests configured, but no file was found; } const successNumber = result.assertionResults.filter(({ status }) => status === 'passed')