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,13 +27,15 @@ export default {
};
export const all = () => <p>Story</p>;
all.parameters = {
decorators: [
s => (
<>
<p>Local Decorator</p>
{s()}
</>
),
],
all.story = {
parameters: {
decorators: [
s => (
<>
<p>Local Decorator</p>
{s()}
</>
),
],
},
};

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 = {
chromatic: { disable: true },
errorStory.story = {
parameters: {
chromatic: { disable: true },
},
};