Fix module format stories w/ parameters & no name (#7216)

Fix module format stories w/ parameters & no name
This commit is contained in:
Michael Shilman 2019-06-27 12:23:53 +08:00 committed by GitHub
commit fb6d36a7f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 11 deletions

View File

@ -27,7 +27,8 @@ export default {
};
export const all = () => <p>Story</p>;
all.parameters = {
all.story = {
parameters: {
decorators: [
s => (
<>
@ -36,4 +37,5 @@ all.parameters = {
</>
),
],
},
};

View File

@ -43,6 +43,8 @@ export const errorStory = () => (
);
// We need to disable this one in Chromatic because the screenshot includes the uploaded URL sadly:
// eg. https://www.chromaticqa.com/snapshot?appId=5a375b97f4b14f0020b0cda3&id=5c52edb4323f9000249aae72
errorStory.parameters = {
errorStory.story = {
parameters: {
chromatic: { disable: true },
},
};