mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:11:08 +08:00
waitFor
This commit is contained in:
parent
19e80de835
commit
fcc078bce0
@ -1,5 +1,5 @@
|
||||
import { AccountForm } from './AccountForm';
|
||||
import { screen, within } from '../src/dom';
|
||||
import { screen, within, waitFor } from '../src/dom';
|
||||
import userEvent from '../src/user-event';
|
||||
import { sleep, tick } from '../src/time';
|
||||
import { expect } from '../src/expect';
|
||||
@ -21,6 +21,19 @@ Demo.play = async ({ args }) => {
|
||||
await expect(args.onSubmit).toHaveBeenCalledWith(expect.stringMatching(/([A-Z])\w+/gi));
|
||||
};
|
||||
|
||||
export const WaitFor = (args) => (
|
||||
<button onClick={() => setTimeout(() => args.onSubmit('clicked'), 200)}>Click</button>
|
||||
);
|
||||
WaitFor.argTypes = {
|
||||
onSubmit: { action: true },
|
||||
};
|
||||
WaitFor.play = async ({ args }) => {
|
||||
await userEvent.click(screen.getByText('Click'));
|
||||
await waitFor(() =>
|
||||
expect(args.onSubmit).toHaveBeenCalledWith(expect.stringMatching(/([A-Z])\w+/gi))
|
||||
);
|
||||
};
|
||||
|
||||
export const Standard = {
|
||||
args: { passwordVerification: false },
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user