mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:01:07 +08:00
FIX Error
This commit is contained in:
parent
7e7d069d60
commit
ca4143537e
@ -18,6 +18,14 @@ const storyId = '1-12-121';
|
||||
export const simpleData = { menu, stories, storyId };
|
||||
export const loadingData = { menu, stories: {} };
|
||||
|
||||
const error: Error = (() => {
|
||||
try {
|
||||
throw new Error('There was a severe problem');
|
||||
} catch (e) {
|
||||
return e;
|
||||
}
|
||||
})();
|
||||
|
||||
const refs: Record<string, RefType> = {
|
||||
optimized: {
|
||||
id: 'optimized',
|
||||
@ -81,13 +89,7 @@ const refs: Record<string, RefType> = {
|
||||
url: 'https://example.com',
|
||||
type: 'lazy',
|
||||
stories: {},
|
||||
error: (() => {
|
||||
try {
|
||||
throw new Error('There was a severe problem');
|
||||
} catch (e) {
|
||||
return e;
|
||||
}
|
||||
})(),
|
||||
error,
|
||||
},
|
||||
auth: {
|
||||
id: 'Authentication',
|
||||
@ -125,6 +127,6 @@ export const Versions = () => <Ref {...refs.versions} storyId="" filter="" isHid
|
||||
export const VersionsMissingCurrent = () => (
|
||||
<Ref {...refs.versionsMissingCurrent} storyId="" filter="" isHidden={false} />
|
||||
);
|
||||
export const Error = () => <Ref {...refs.error} storyId="" filter="" isHidden={false} />;
|
||||
export const Errored = () => <Ref {...refs.error} storyId="" filter="" isHidden={false} />;
|
||||
export const Auth = () => <Ref {...refs.auth} storyId="" filter="" isHidden={false} />;
|
||||
export const Long = () => <Ref {...refs.long} storyId="" filter="" isHidden={false} />;
|
||||
|
Loading…
x
Reference in New Issue
Block a user