mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Add stories to check shortcuts aren't called from play
This commit is contained in:
parent
0d1ce628e0
commit
6e2b837a88
@ -3333,8 +3333,7 @@ describe('PreviewWeb', () => {
|
|||||||
componentOneExports.b.play.mockImplementationOnce(async () => gate);
|
componentOneExports.b.play.mockImplementationOnce(async () => gate);
|
||||||
preview.renderStoryToElement(
|
preview.renderStoryToElement(
|
||||||
await preview.storyStore.loadStory({ storyId: 'component-one--b' }),
|
await preview.storyStore.loadStory({ storyId: 'component-one--b' }),
|
||||||
{} as any,
|
{} as any
|
||||||
{ runPlayFunction: true }
|
|
||||||
);
|
);
|
||||||
await waitForRenderPhase('playing');
|
await waitForRenderPhase('playing');
|
||||||
|
|
||||||
|
29
code/lib/store/template/stories/shortcuts.stories.ts
Normal file
29
code/lib/store/template/stories/shortcuts.stories.ts
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
import globalThis from 'global';
|
||||||
|
import { userEvent, within } from '@storybook/testing-library';
|
||||||
|
import { PREVIEW_KEYDOWN } from '@storybook/core-events';
|
||||||
|
import { jest, expect } from '@storybook/jest';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
component: globalThis.Components.Form,
|
||||||
|
tags: ['docsPage'],
|
||||||
|
};
|
||||||
|
|
||||||
|
export const KeydownDuringPlay = {
|
||||||
|
play: async ({ canvasElement }) => {
|
||||||
|
const channel = globalThis.__STORYBOOK_ADDONS_CHANNEL__;
|
||||||
|
|
||||||
|
const previewKeydown = jest.fn();
|
||||||
|
channel.on(PREVIEW_KEYDOWN, previewKeydown);
|
||||||
|
// eslint-disable-next-line storybook/await-interactions
|
||||||
|
const promise = userEvent.type(await within(canvasElement).findByTestId('value'), '000000', {
|
||||||
|
delay: 100,
|
||||||
|
});
|
||||||
|
|
||||||
|
const button = await within(canvasElement).findByRole('button');
|
||||||
|
button.focus();
|
||||||
|
|
||||||
|
await promise;
|
||||||
|
|
||||||
|
expect(previewKeydown).not.toBeCalled();
|
||||||
|
},
|
||||||
|
};
|
Loading…
x
Reference in New Issue
Block a user