vitest.shared.ts 300 B

12345
  1. /**
  2. * Worker arguments that keep process-wide Web Storage from shadowing jsdom storage.
  3. * Node lists the positive spelling in `allowedNodeEnvironmentFlags` for this negatable flag.
  4. */
  5. export const vitestExecArgv = process.allowedNodeEnvironmentFlags.has('--webstorage') ? ['--no-webstorage'] : []