mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
```ts
|
|
// MyComponent.stories.ts
|
|
|
|
import type { Meta, Story } from '@storybook/angular';
|
|
|
|
import { fireEvent, screen, userEvent } from '@storybook/testing-library';
|
|
|
|
import { MyComponent } from './MyComponent.component';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/7.0/angular/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'ClickExamples',
|
|
component: MyComponent,
|
|
} as Meta;
|
|
|
|
export const ClickExample: Story = {
|
|
play: async () => {
|
|
// See https://storybook.js.org/docs/7.0/angular/essentials/actions#automatically-matching-args to learn how to setup logging in the Actions panel
|
|
await userEvent.click(screen.getByRole('button'));
|
|
},
|
|
};
|
|
|
|
export const FireEventExample: Story = {
|
|
play: async () => {
|
|
// See https://storybook.js.org/docs/7.0/angular/essentials/actions#automatically-matching-args to learn how to setup logging in the Actions panel
|
|
await fireEvent.click(screen.getByTestId('data-testid'));
|
|
},
|
|
};
|
|
```
|