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