mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
import { expect, userEvent, within } from '@storybook/test';
|
|
import type { Meta, StoryObj } from '@storybook/vue3';
|
|
|
|
import MyPage from './Page.vue';
|
|
|
|
const meta: Meta<typeof MyPage> = {
|
|
title: 'Example/Page',
|
|
component: MyPage,
|
|
render: () => ({
|
|
components: { MyPage },
|
|
template: '<my-page />',
|
|
}),
|
|
parameters: {
|
|
// More on how to position stories at: https://storybook.js.org/docs/configure/story-layout
|
|
layout: 'fullscreen',
|
|
},
|
|
// This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/writing-docs/autodocs
|
|
tags: ['autodocs'],
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof MyPage>;
|
|
|
|
// More on component testing: https://storybook.js.org/docs/writing-tests/component-testing
|
|
export const LoggedIn: Story = {
|
|
play: async ({ canvasElement }: any) => {
|
|
const canvas = within(canvasElement);
|
|
const loginButton = canvas.getByRole('button', { name: /Log in/i });
|
|
await expect(loginButton).toBeInTheDocument();
|
|
await userEvent.click(loginButton);
|
|
await expect(loginButton).not.toBeInTheDocument();
|
|
|
|
const logoutButton = canvas.getByRole('button', { name: /Log out/i });
|
|
await expect(logoutButton).toBeInTheDocument();
|
|
},
|
|
};
|
|
|
|
export const LoggedOut: Story = {};
|