Norbert de Langen 714250f2de Merge branch 'core/magic-entry' into core/magic-entry-storyshots
# Conflicts:
#	addons/storyshots/storyshots-core/package.json
#	examples/html-kitchen-sink/.storybook/presets.js
2019-11-13 11:39:24 +01:00

21 lines
402 B
JavaScript

import { addParameters, addDecorator } from '@storybook/html';
import { withA11y } from '@storybook/addon-a11y';
addDecorator(withA11y);
addParameters({
a11y: {
config: {},
options: {
checks: { 'color-contrast': { options: { noScroll: true } } },
restoreScroll: true,
},
},
options: {
hierarchyRootSeparator: /\|/,
},
docs: {
iframeHeight: '200px',
},
});