mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-27 09:21:35 +07:00
style: fix rebased format drift
This commit is contained in:
@@ -6,8 +6,8 @@ export function createScopedVitestConfig(
|
||||
options?: { exclude?: string[]; pool?: "threads" | "forks" },
|
||||
) {
|
||||
const base = baseConfig as unknown as Record<string, unknown>;
|
||||
const baseTest = (baseConfig as { test?: { exclude?: string[]; pool?: "threads" | "forks" } })
|
||||
.test ?? {};
|
||||
const baseTest =
|
||||
(baseConfig as { test?: { exclude?: string[]; pool?: "threads" | "forks" } }).test ?? {};
|
||||
const exclude = [...(baseTest.exclude ?? []), ...(options?.exclude ?? [])];
|
||||
|
||||
return defineConfig({
|
||||
|
||||
Reference in New Issue
Block a user