mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Test debugger controls
This commit is contained in:
parent
230bf5935d
commit
0749e5999f
@ -1,8 +1,11 @@
|
||||
/* eslint-disable jest/no-standalone-expect */
|
||||
import React from 'react';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import type { ComponentStoryObj, ComponentMeta } from '@storybook/react';
|
||||
import { CallStates } from '@storybook/instrumenter';
|
||||
import { styled } from '@storybook/theming';
|
||||
import { userEvent, within, waitFor } from '@storybook/testing-library';
|
||||
import { expect } from '@storybook/jest';
|
||||
|
||||
import { getCalls, getInteractions } from './mocks';
|
||||
import { AddonPanelPure } from './Panel';
|
||||
@ -57,6 +60,34 @@ export const Passing: Story = {
|
||||
interactions: getInteractions(CallStates.DONE),
|
||||
},
|
||||
};
|
||||
Passing.play = async ({ args, canvasElement }) => {
|
||||
const canvas = within(canvasElement);
|
||||
|
||||
await waitFor(async () => {
|
||||
await userEvent.click(canvas.getByLabelText('Go to start'));
|
||||
await expect(args.controls.start).toHaveBeenCalled();
|
||||
});
|
||||
|
||||
await waitFor(async () => {
|
||||
await userEvent.click(canvas.getByLabelText('Go back'));
|
||||
await expect(args.controls.back).toHaveBeenCalled();
|
||||
});
|
||||
|
||||
await waitFor(async () => {
|
||||
await userEvent.click(canvas.getByLabelText('Go forward'));
|
||||
await expect(args.controls.next).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
await waitFor(async () => {
|
||||
await userEvent.click(canvas.getByLabelText('Go to end'));
|
||||
await expect(args.controls.end).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
await waitFor(async () => {
|
||||
await userEvent.click(canvas.getByLabelText('Rerun'));
|
||||
await expect(args.controls.rerun).toHaveBeenCalled();
|
||||
});
|
||||
};
|
||||
|
||||
export const Paused: Story = {
|
||||
args: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user