mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Merge remote-tracking branch 'origin/kasper/introduce-run' into kasper/introduce-run
This commit is contained in:
commit
9d2af7cd30
@ -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.
|
||||
|
||||
|
@ -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
Loading…
x
Reference in New Issue
Block a user