mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 23:51:16 +08:00
38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import type { StoryFn, Meta } from '@storybook/angular';
|
|
import { moduleMetadata } from '@storybook/angular';
|
|
import { within, userEvent } from '@storybook/testing-library';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import Button from './button.component';
|
|
import Header from './header.component';
|
|
import Page from './page.component';
|
|
|
|
export default {
|
|
title: 'Example/Page',
|
|
component: Page,
|
|
parameters: {
|
|
// More on StoryFn layout: https://storybook.js.org/docs/angular/configure/story-layout
|
|
layout: 'fullscreen',
|
|
},
|
|
decorators: [
|
|
moduleMetadata({
|
|
declarations: [Button, Header],
|
|
imports: [CommonModule],
|
|
}),
|
|
],
|
|
} as Meta;
|
|
|
|
const Template: StoryFn<Page> = (args: Page) => ({
|
|
props: args,
|
|
});
|
|
|
|
export const LoggedOut = Template.bind({});
|
|
|
|
// More on interaction testing: https://storybook.js.org/docs/angular/writing-tests/interaction-testing
|
|
export const LoggedIn = Template.bind({});
|
|
LoggedIn.play = async ({ canvasElement }) => {
|
|
const canvas = within(canvasElement);
|
|
const loginButton = await canvas.getByRole('button', { name: /Log in/i });
|
|
await userEvent.click(loginButton);
|
|
};
|