Files
openclaw/test/vitest/vitest.tooling-isolated.config.ts
T
Peter Steinberger 1afb5e64a5 improve: reduce provider auth parity test time (#122445)
* test: trim provider auth parity runtime probes

* test: keep parity shards in tooling owner

---------

Co-authored-by: Amp <amp@ampcode.com>
2026-08-11 22:37:06 -07:00

19 lines
732 B
TypeScript

// Vitest tooling isolated config wires the tooling isolated test shard.
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
import { toolingIsolatedTestFiles } from "./vitest.tooling-isolated-paths.mjs";
export function createToolingIsolatedVitestConfig(env?: Record<string, string | undefined>) {
return createScopedVitestConfig(toolingIsolatedTestFiles, {
env,
// Explicit tooling ownership must include thin wrappers even when static
// analysis also classifies them as unit-fast candidates.
excludeUnitFastTests: false,
isolate: true,
name: "tooling-isolated",
passWithNoTests: true,
useNonIsolatedRunner: false,
});
}
export default createToolingIsolatedVitestConfig();