From 5793055e26cdb3ef687d5e015ce2be01d800e933 Mon Sep 17 00:00:00 2001 From: jonniebigodes Date: Mon, 25 Apr 2022 12:47:47 +0100 Subject: [PATCH] minor tweaks --- .../common/storybook-test-runner-error.js.mdx | 3 --- docs/writing-tests/accessibility-testing.md | 2 +- docs/writing-tests/importing-stories-in-tests.md | 2 +- docs/writing-tests/introduction.md | 2 +- docs/writing-tests/test-runner.md | 12 +++--------- 5 files changed, 6 insertions(+), 15 deletions(-) delete mode 100644 docs/snippets/common/storybook-test-runner-error.js.mdx diff --git a/docs/snippets/common/storybook-test-runner-error.js.mdx b/docs/snippets/common/storybook-test-runner-error.js.mdx deleted file mode 100644 index 4fee77456c6..00000000000 --- a/docs/snippets/common/storybook-test-runner-error.js.mdx +++ /dev/null @@ -1,3 +0,0 @@ -```shell -Timeout - Async callback was not invoked within the 15000 ms timeout specified by jest.setTimeout -``` \ No newline at end of file diff --git a/docs/writing-tests/accessibility-testing.md b/docs/writing-tests/accessibility-testing.md index e8348cef496..9dcae06f040 100644 --- a/docs/writing-tests/accessibility-testing.md +++ b/docs/writing-tests/accessibility-testing.md @@ -208,7 +208,7 @@ It starts checking for issues by traversing the DOM tree starting from the story #### What’s the difference between browser-based and linter-based accessibility tests? -Browser-based accessibility tests, like found in Storybook, evaluate the rendered DOM because that gives you the highest accuracy. Auditing code that hasn't been compiled yet is one step removed from the real thing, so you won't catch everything the user might experience. +Browser-based accessibility tests, like those found in Storybook, evaluate the rendered DOM because that gives you the highest accuracy. Auditing code that hasn't been compiled yet is one step removed from the real thing, so you won't catch everything the user might experience. #### Learn about other UI tests diff --git a/docs/writing-tests/importing-stories-in-tests.md b/docs/writing-tests/importing-stories-in-tests.md index 87b72775316..d076be34b05 100644 --- a/docs/writing-tests/importing-stories-in-tests.md +++ b/docs/writing-tests/importing-stories-in-tests.md @@ -69,7 +69,7 @@ Update your test script to include the configuration file: ## Example with Testing Library -[Testing Library](https://testing-library.com/) is a suite of helper libraries for browser-based interaction tests. With [Component Story Format](../api/csf.md), your stories are reusable with Testing Library. Each named export (in other words, a story) is renderable within your testing setup. +[Testing Library](https://testing-library.com/) is a suite of helper libraries for browser-based interaction tests. With [Component Story Format](../api/csf.md), your stories are reusable with Testing Library. Each named export (story) is renderable within your testing setup.
diff --git a/docs/writing-tests/introduction.md b/docs/writing-tests/introduction.md index 2c4f2946e3c..334a684c9d2 100644 --- a/docs/writing-tests/introduction.md +++ b/docs/writing-tests/introduction.md @@ -12,7 +12,7 @@ The simplest testing method is manual “spot checking”. You run Storybook loc To test a component in isolation, you often have to mock data, dependencies, or even network requests. Check out our guide on [mocking in Storybook](../writing-stories/build-pages-with-storybook.md#mocking-connected-components) for more info. -Storybook also comes with tools, [test runners](./test-runner.md), and [handy integrations](./importing-stories-in-tests.md) with the larger JavaScript ecosystem to expand your UI test coverage. These docs detail how you can use Storybook for UI testing. +Storybook also comes with tools, [a test runner](./test-runner.md), and [handy integrations](./importing-stories-in-tests.md) with the larger JavaScript ecosystem to expand your UI test coverage. These docs detail how you can use Storybook for UI testing. - [**Test runner**](./test-runner.md) to automatically test your entire Storybook and catch broken stories. - [**Visual tests**](./visual-testing.md) capture a screenshot of every story then compare it against baselines to detect appearance and integration issues diff --git a/docs/writing-tests/test-runner.md b/docs/writing-tests/test-runner.md index c8d8843ab4e..f7727f5a40b 100644 --- a/docs/writing-tests/test-runner.md +++ b/docs/writing-tests/test-runner.md @@ -273,15 +273,9 @@ Stories.json mode requires a `stories.json` file. Open a browser window and navi If your tests time out with the following message: - - - - - +```shell +Timeout - Async callback was not invoked within the 15000 ms timeout specified by jest.setTimeout +``` It might be that Playwright couldn't handle testing the number of stories you have in your project. Perhaps you have a large number of stories, or your CI environment has a really low RAM configuration. In such cases, you should limit the number of workers that run in parallel by adjusting your command as follows: