mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-14 02:31:24 +00:00
36 lines
952 B
TypeScript
36 lines
952 B
TypeScript
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
|
|
|
export default createScopedVitestConfig(
|
|
[
|
|
"arcee/**/*.test.ts",
|
|
"brave/**/*.test.ts",
|
|
"device-pair/**/*.test.ts",
|
|
"diagnostics-otel/**/*.test.ts",
|
|
"duckduckgo/**/*.test.ts",
|
|
"exa/**/*.test.ts",
|
|
"firecrawl/**/*.test.ts",
|
|
"fireworks/**/*.test.ts",
|
|
"kilocode/**/*.test.ts",
|
|
"litellm/**/*.test.ts",
|
|
"llm-task/**/*.test.ts",
|
|
"lobster/**/*.test.ts",
|
|
"opencode/**/*.test.ts",
|
|
"opencode-go/**/*.test.ts",
|
|
"openshell/**/*.test.ts",
|
|
"perplexity/**/*.test.ts",
|
|
"phone-control/**/*.test.ts",
|
|
"searxng/**/*.test.ts",
|
|
"synthetic/**/*.test.ts",
|
|
"tavily/**/*.test.ts",
|
|
"thread-ownership/**/*.test.ts",
|
|
"vercel-ai-gateway/**/*.test.ts",
|
|
"webhooks/**/*.test.ts",
|
|
],
|
|
{
|
|
dir: "extensions",
|
|
name: "extension-misc",
|
|
passWithNoTests: true,
|
|
setupFiles: ["test/setup.extensions.ts"],
|
|
},
|
|
);
|