mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 16:42:54 +00:00
* 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
16 lines
646 B
TypeScript
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,
|
|
});
|