mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Refactor condition for Vitest standalone run check in preview.tsx
This commit is contained in:
parent
9a3ec6dc26
commit
0661d68e22
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user