mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
28 lines
811 B
TypeScript
28 lines
811 B
TypeScript
import type { Meta, StoryObj } from '@storybook/html';
|
|
import { within, userEvent } from '@storybook/testing-library';
|
|
import { createPage } from './Page';
|
|
|
|
const meta: Meta = {
|
|
title: 'Example/Page',
|
|
render: () => createPage(),
|
|
parameters: {
|
|
// More on how to position stories at: https://storybook.js.org/docs/7.0/html/configure/story-layout
|
|
layout: 'fullscreen',
|
|
},
|
|
};
|
|
|
|
export default meta;
|
|
|
|
export const LoggedOut: StoryObj = {};
|
|
|
|
// More on interaction testing: https://storybook.js.org/docs/7.0/html/writing-tests/interaction-testing
|
|
export const LoggedIn: StoryObj = {
|
|
play: async ({ canvasElement }) => {
|
|
const canvas = within(canvasElement);
|
|
const loginButton = await canvas.getByRole('button', {
|
|
name: /Log in/i,
|
|
});
|
|
await userEvent.click(loginButton);
|
|
},
|
|
};
|