Files
openclaw/test/vitest/vitest.unit-support.config.ts
Dallin Romney ed36f423da fix(ci): bound manual git fetches (#87839)
* fix(ci): bound manual git fetches

* fix(ci): cover platform fetch guards

* fix(ci): fail timed out target fetches

* fix(ci): repair typecheck regressions

* fix(ci): refresh CI expectations

* fix(ci): preserve main cron coverage
2026-05-28 22:56:54 -07:00

16 lines
646 B
TypeScript

import { createUnitVitestConfigWithOptions } from "./vitest.unit.config.ts";
export default createUnitVitestConfigWithOptions(process.env, {
name: "unit-support",
includePatterns: ["packages/**/*.test.ts"],
extraExcludePatterns: [
// The gateway-client package owns its own browser/runtime protocol lane.
"packages/gateway-client/src/**/*.test.ts",
// The gateway-protocol package rides with gateway-client because the client
// package owns the browser/runtime protocol compatibility lane.
"packages/gateway-protocol/src/**/*.test.ts",
"packages/gateway-client/src/**/*.test.ts",
],
passWithNoTests: true,
});