mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-24 19:35:28 -06:00
12 lines
484 B
TypeScript
12 lines
484 B
TypeScript
// Vitest extension browser config wires the extension browser test shard.
|
|
import { browserExtensionTestRoots } from "./vitest.extension-browser-paths.mjs";
|
|
import { createExtensionVitestConfig } from "./vitest.extension-config.ts";
|
|
|
|
export function createExtensionBrowserVitestConfig(
|
|
env: Record<string, string | undefined> = process.env,
|
|
) {
|
|
return createExtensionVitestConfig("browser", browserExtensionTestRoots, env);
|
|
}
|
|
|
|
export default createExtensionBrowserVitestConfig();
|