Comment out story that fails in Chromatic

(I will revert this commit soon)
This commit is contained in:
Tom Coleman 2019-01-11 12:43:56 +11:00
parent 3bb9606383
commit 9f5affc5ab

View File

@ -2,13 +2,14 @@ export default {
title: 'Core|Errors',
};
export const exception = () => {
throw new Error('error');
};
exception.title = 'story throws exception';
exception.parameters = {
storyshots: { disabled: true },
};
// Comment this story out until Chromatic supports skipping stories via parameters (soon I promise!)
// export const exception = () => {
// throw new Error('error');
// };
// exception.title = 'story throws exception';
// exception.parameters = {
// storyshots: { disabled: true },
// };
export const errors = () => null;
errors.title = 'story errors';