mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-09 15:59:30 +00:00
10 lines
424 B
TypeScript
10 lines
424 B
TypeScript
// Vitest extension clickclack config wires the extension clickclack test shard.
|
|
import { createSingleChannelExtensionVitestConfig } from "./vitest.extension-channel-single-config.ts";
|
|
|
|
function createExtensionClickClackVitestConfig(
|
|
env: Record<string, string | undefined> = process.env,
|
|
) {
|
|
return createSingleChannelExtensionVitestConfig("clickclack", env);
|
|
}
|
|
|
|
export default createExtensionClickClackVitestConfig();
|