mirror of
https://github.com/openclaw/openclaw.git
synced 2026-02-09 05:19:32 +08:00
- vitest.live.config.ts and vitest.e2e.config.ts now extend root config - Inherits testTimeout (120s), resolve.alias, pool, setupFiles, excludes - ui/vitest.node.config.ts gets explicit 120s timeout - package.json description updated for multi-channel AI gateway - Removed unused src/utils/time-format.ts
11 lines
257 B
TypeScript
11 lines
257 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
// Node-only tests for pure logic (no Playwright/browser dependency).
|
|
export default defineConfig({
|
|
test: {
|
|
testTimeout: 120_000,
|
|
include: ["src/**/*.node.test.ts"],
|
|
environment: "node",
|
|
},
|
|
});
|