mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 17:01:07 +08:00
fix build
This commit is contained in:
parent
b1dde9869e
commit
30220c2c85
@ -1,5 +1,4 @@
|
||||
import addons from '@storybook/addons';
|
||||
import { STORY_RENDERED } from '@storybook/core-events';
|
||||
import { EVENTS } from './constants';
|
||||
|
||||
jest.mock('@storybook/addons');
|
||||
@ -20,7 +19,6 @@ describe('a11yRunner', () => {
|
||||
require('./a11yRunner');
|
||||
|
||||
expect(mockedAddons.getChannel).toHaveBeenCalled();
|
||||
expect(mockChannel.on).toHaveBeenCalledWith(STORY_RENDERED, expect.any(Function));
|
||||
expect(mockChannel.on).toHaveBeenCalledWith(EVENTS.REQUEST, expect.any(Function));
|
||||
expect(mockChannel.on).toHaveBeenCalledWith(EVENTS.MANUAL, expect.any(Function));
|
||||
});
|
||||
|
@ -1,5 +1,4 @@
|
||||
import { document, window } from 'global';
|
||||
import { STORY_RENDERED } from '@storybook/core-events';
|
||||
import axe from 'axe-core';
|
||||
import addons from '@storybook/addons';
|
||||
import { EVENTS } from './constants';
|
||||
@ -18,7 +17,6 @@ const getElement = () => {
|
||||
};
|
||||
|
||||
const run = async (storyId: string) => {
|
||||
console.log('Running', storyId);
|
||||
try {
|
||||
const input = getParams(storyId);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user