Refactor condition for Vitest standalone run check in preview.tsx

This commit is contained in:
Valentin Palkovic 2024-11-25 15:11:45 +01:00
parent 9a3ec6dc26
commit 0661d68e22

View File

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