mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 14:50:45 +00:00
10 lines
332 B
TypeScript
10 lines
332 B
TypeScript
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();
|