@storybook/preact-vite
Version:
Storybook for Preact and Vite: Develop Preact components in isolation with Hot Reloading.
26 lines (21 loc) • 662 B
JSX
import { userEvent, within } from 'storybook/test';
import { Page } from './Page';
export default {
title: 'Example/Page',
component: Page,
parameters: {
// More on how to position stories at: https://storybook.js.org/docs/configure/story-layout
layout: 'fullscreen',
},
};
export const LoggedOut = {};
// More on component testing: https://storybook.js.org/docs/writing-tests/interaction-testing
export const LoggedIn = {
play: async ({ canvasElement }) => {
const canvas = within(canvasElement);
const loginButton = await canvas.getByRole('button', {
name: /Log in/i,
});
await userEvent.click(loginButton);
},
};