2026-03-14 11:23:25 -07:00
|
|
|
import { channelTestExclude } from "./vitest.channel-paths.mjs";
|
2026-03-02 14:35:49 +00:00
|
|
|
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
2026-01-23 11:36:28 +00:00
|
|
|
|
2026-03-14 11:23:25 -07:00
|
|
|
export default createScopedVitestConfig(["extensions/**/*.test.ts"], {
|
|
|
|
|
// Channel implementations live under extensions/ but are tested by
|
|
|
|
|
// vitest.channels.config.ts (pnpm test:channels) which provides
|
|
|
|
|
// the heavier mock scaffolding they need.
|
|
|
|
|
exclude: channelTestExclude.filter((pattern) => pattern.startsWith("extensions/")),
|
|
|
|
|
});
|