mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
11 lines
401 B
TypeScript
11 lines
401 B
TypeScript
// Vitest extension line config wires the extension line test shard.
|
|
import { createSingleChannelExtensionVitestConfig } from "./vitest.extension-channel-single-config.ts";
|
|
|
|
export function createExtensionLineVitestConfig(
|
|
env: Record<string, string | undefined> = process.env,
|
|
) {
|
|
return createSingleChannelExtensionVitestConfig("line", env);
|
|
}
|
|
|
|
export default createExtensionLineVitestConfig();
|