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