fix build

This commit is contained in:
Clément Dungler 2020-04-19 18:45:17 +02:00
parent b1dde9869e
commit 30220c2c85
2 changed files with 0 additions and 4 deletions

View File

@ -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));
});

View File

@ -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);