Merge remote-tracking branch 'origin/kasper/introduce-run' into kasper/introduce-run

This commit is contained in:
Kasper Peulen 2024-07-31 15:46:31 +02:00
commit 9d2af7cd30
6 changed files with 4 additions and 42644 deletions

View File

@ -87,8 +87,8 @@ sidebar:
| argTypes | `ArgType` | The story's [argTypes](../arg-types.mdx) |
| id | `string` | The story's id |
| parameters | `Record<string, any>` | The story's [parameters](../parameters.mdx) |
| play | `(context) => Promise<void> \| undefined` | Executes the [play function](#3-play) of a given story |
| run | `(context) => Promise<void> \| undefined` | Mounts and executes the [play function](#3-play) of a given story |
| play | `(context) => Promise<void> \| undefined` | Executes the play function of a given story |
| run | `(context) => Promise<void> \| undefined` | [Mounts and executes the play function](#3-run) of a given story |
| storyName | `string` | The story's name |
| tags | `string[]` | The story's [tags](../../writing-stories/tags.mdx) |
@ -219,7 +219,7 @@ sidebar:
### 3. Run
Finally, stories can prepare data they need (e.g. setting up some mocks or fetching data) before rendering by defining [loaders](../../writing-stories/loaders.mdx), [beforeEach](../../writing-tests/interaction-testing.mdx#run-code-before-each-story) or by having all the story code in the play function when using the [mount](../../writing-tests/interaction-testing.mdx#run-code-before-the-component-gets-rendered). In portable stories, all of these steps will be executed when you run the `run` method of the composed story.
Finally, stories can prepare data they need (e.g. setting up some mocks or fetching data) before rendering by defining [loaders](../../writing-stories/loaders.mdx), [beforeEach](../../writing-tests/interaction-testing.mdx#run-code-before-each-story) or by having all the story code in the play function when using the [mount](../../writing-tests/interaction-testing.mdx#run-code-before-the-component-gets-rendered). In portable stories, all of these steps will be executed when you call the `run` method of the composed story.
👉 For this, you use the [`composeStories`](#composestories) or [`composeStory`](#composestory) API. The composed story will return a `run` method to be called.

View File

@ -233,7 +233,7 @@ sidebar:
### 3. Run
Finally, stories can prepare data they need (e.g. setting up some mocks or fetching data) before rendering by defining [loaders](../../writing-stories/loaders.mdx), [beforeEach](../../writing-tests/interaction-testing.mdx#run-code-before-each-story) or by having all the story code in the play function when using the [mount](../../writing-tests/interaction-testing.mdx#run-code-before-the-component-gets-rendered). In portable stories, all of these steps will be executed when you run the `run` method of the composed story.
Finally, stories can prepare data they need (e.g. setting up some mocks or fetching data) before rendering by defining [loaders](../../writing-stories/loaders.mdx), [beforeEach](../../writing-tests/interaction-testing.mdx#run-code-before-each-story) or by having all the story code in the play function when using the [mount](../../writing-tests/interaction-testing.mdx#run-code-before-the-component-gets-rendered). In portable stories, all of these steps will be executed when you call the `run` method of the composed story.
👉 For this, you use the [`composeStories`](#composestories) or [`composeStory`](#composestory) API. The composed story will return a `run` method to be called.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff