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