mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-25 20:05:46 -06:00
12 lines
444 B
TypeScript
12 lines
444 B
TypeScript
import { createExtensionVitestConfig } from "./vitest.extension-config.ts";
|
|
// Vitest extension qa config wires the extension qa test shard.
|
|
import { qaExtensionTestRoots } from "./vitest.extension-qa-paths.mjs";
|
|
|
|
export function createExtensionQaVitestConfig(
|
|
env: Record<string, string | undefined> = process.env,
|
|
) {
|
|
return createExtensionVitestConfig("qa", qaExtensionTestRoots, env);
|
|
}
|
|
|
|
export default createExtensionQaVitestConfig();
|