Fix environment usage in preview file

This commit is contained in:
Valentin Palkovic 2024-11-22 15:19:23 +01:00
parent 3f1ae4effe
commit 9ed60778e4

View File

@ -11,7 +11,7 @@ expect.extend(matchers);
// @ts-expect-error - ignore // @ts-expect-error - ignore
// todo: check in webpack environments // todo: check in webpack environments
const isVitestStandaloneRun = import.meta?.env?.STORYBOOK !== 'true'; const isVitestStandaloneRun = import.meta?.env?.STORYBOOK && import.meta?.env?.STORYBOOK !== 'true';
export const afterEach = async ({ reporting, parameters, globals, id }: StoryContext) => { export const afterEach = async ({ reporting, parameters, globals, id }: StoryContext) => {
const a11yParameter: A11yParameters | undefined = parameters.a11y; const a11yParameter: A11yParameters | undefined = parameters.a11y;