mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
12 lines
460 B
TypeScript
12 lines
460 B
TypeScript
import { createExtensionVitestConfig } from "./vitest.extension-config.ts";
|
|
// Vitest extension zalo config wires the extension zalo test shard.
|
|
import { zaloExtensionTestRoots } from "./vitest.extension-zalo-paths.mjs";
|
|
|
|
export function createExtensionZaloVitestConfig(
|
|
env: Record<string, string | undefined> = process.env,
|
|
) {
|
|
return createExtensionVitestConfig("zalo", zaloExtensionTestRoots, env);
|
|
}
|
|
|
|
export default createExtensionZaloVitestConfig();
|