From f67f3d598d3174afbcb47d39a4075d6854558aa8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Feb 2026 06:01:07 +0000 Subject: [PATCH 1/2] Initial plan From ed9764b56a86cba15ab930d33ac5207af9a74afc Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Feb 2026 06:03:54 +0000 Subject: [PATCH 2/2] Exclude typedoc test from regular test run to fix CI Co-authored-by: miccy <9729864+miccy@users.noreply.github.com> --- scripts/typedoc-plugin-evolu.test.mts | 4 ++++ vitest.config.mts | 3 +++ 2 files changed, 7 insertions(+) diff --git a/scripts/typedoc-plugin-evolu.test.mts b/scripts/typedoc-plugin-evolu.test.mts index 18a4993c4..f97a8c3ea 100644 --- a/scripts/typedoc-plugin-evolu.test.mts +++ b/scripts/typedoc-plugin-evolu.test.mts @@ -7,6 +7,10 @@ import { describe, expect, it } from "vitest"; * * These tests verify the generated documentation. Run `bun run build:docs` before * running these tests. + * + * NOTE: This test is excluded from the regular test run in vitest.config.mts + * because it requires generated docs. It runs explicitly in the verify script + * after `bun run build:docs`. */ const docsPath = join( diff --git a/vitest.config.mts b/vitest.config.mts index 60c2fe827..0a7477c25 100644 --- a/vitest.config.mts +++ b/vitest.config.mts @@ -12,6 +12,9 @@ export default defineConfig({ test: { name: "scripts", include: ["scripts/**/*.test.mts"], + // Exclude typedoc test because it requires generated docs. + // It runs explicitly after build:docs in the verify script. + exclude: ["scripts/typedoc-plugin-evolu.test.mts"], }, }, ],