mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Update afterEach tests to expect errors to be thrown
This commit is contained in:
parent
337cda05e8
commit
ec7f512a8d
@ -82,7 +82,7 @@ describe('afterEach', () => {
|
||||
|
||||
mockedRun.mockResolvedValue(result as any);
|
||||
|
||||
await afterEach(context);
|
||||
await expect(() => afterEach(context)).rejects.toThrow();
|
||||
|
||||
expect(mockedRun).toHaveBeenCalledWith(context.parameters.a11y);
|
||||
|
||||
@ -186,7 +186,7 @@ describe('afterEach', () => {
|
||||
const error = new Error('Test error');
|
||||
mockedRun.mockRejectedValue(error);
|
||||
|
||||
await afterEach(context);
|
||||
await expect(() => afterEach(context)).rejects.toThrow();
|
||||
|
||||
expect(mockedRun).toHaveBeenCalledWith(context.parameters.a11y);
|
||||
expect(context.reporting.addReport).toHaveBeenCalledWith({
|
||||
|
Loading…
x
Reference in New Issue
Block a user