Files
openclaw/test/vitest/vitest.tooling-isolated-paths.mjs
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

16 lines
680 B
JavaScript

// Tooling tests that need fresh module or process state instead of the shared serial worker.
export const toolingIsolatedTestFiles = [
"test/plugins/bundled-provider-auth-literal-parity.test.ts",
"test/plugins/bundled-provider-auth-literal-parity.2.test.ts",
"test/plugins/bundled-provider-auth-literal-parity.3.test.ts",
"test/scripts/check-extension-package-tsc-boundary.test.ts",
"test/scripts/control-ui-i18n.test.ts",
"test/scripts/openclaw-e2e-instance.test.ts",
];
const toolingIsolatedTestFileSet = new Set(toolingIsolatedTestFiles);
export function isToolingIsolatedTestFile(value) {
return toolingIsolatedTestFileSet.has(value.replaceAll("\\", "/"));
}