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