storybook/docs/snippets/angular/my-component-play-function-query-findby.mdx.mdx
2022-09-15 00:54:47 +01:00

29 lines
762 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

```md
<!-- MyComponent.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
import { screen, userEvent } from '@storybook/testing-library';
import { MyComponent } from './MyComponent.component';
<Meta title="Async Query Methods" component={MyComponent} />
<!--
👇 Render functions are a framework specific feature to allow you control on how the component renders.
See https://storybook.js.org/docs/7.0/angular/api/csf
to learn how to use render functions.
-->
<Story
name="AsyncExample"
play={async () => {
// Other steps
// Waits for the component to be rendered before querying the element
await screen.findByRole('button', { name: / button label/i }));
}}
render={(args) => ({
props: args,
})} />
```