Merge pull request #10439 from storybookjs/fix/a11yAddonDefaultParams

bug: default a11y parameters
This commit is contained in:
Norbert de Langen 2020-04-15 20:21:18 +02:00 committed by GitHub
commit 4325650bb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,13 +28,7 @@ const run = async (storyId: string) => {
if (!active) {
active = true;
const {
element = getElement(),
config,
options = {
restoreScroll: true,
},
} = input;
const { element = getElement(), config, options } = input;
axe.reset();
if (config) {
axe.configure(config);
@ -50,10 +44,18 @@ const run = async (storyId: string) => {
}
};
/** Returns story parameters or default ones. */
const getParams = (storyId: string): Setup => {
// eslint-disable-next-line no-underscore-dangle
const { parameters } = window.__STORYBOOK_STORY_STORE__._stories[storyId] || {};
return parameters.a11y;
return (
parameters.a11y || {
config: {},
options: {
restoreScroll: true,
},
}
);
};
channel.on(STORY_RENDERED, run);