mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
14 lines
321 B
JavaScript
14 lines
321 B
JavaScript
import addons from '@storybook/addons';
|
|
|
|
import A11yManager from './A11yManager';
|
|
import * as shared from './shared';
|
|
|
|
const manager = new A11yManager();
|
|
|
|
function checkA11y(storyFn, context) {
|
|
const channel = addons.getChannel();
|
|
return manager.wrapStory(channel, storyFn, context);
|
|
}
|
|
|
|
export { checkA11y, shared };
|