mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
1afb5e64a5
* test: trim provider auth parity runtime probes * test: keep parity shards in tooling owner --------- Co-authored-by: Amp <amp@ampcode.com>
19 lines
732 B
TypeScript
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();
|