From d6add1f56df007933b3a853a60fb35c4809aa33d Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Sun, 5 Apr 2026 01:17:19 +0900 Subject: [PATCH] test: update workflow test to expect run-ci-tests.ts --- script/publish-workflow.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script/publish-workflow.test.ts b/script/publish-workflow.test.ts index 9328f8c09..66c9a1f97 100644 --- a/script/publish-workflow.test.ts +++ b/script/publish-workflow.test.ts @@ -9,14 +9,14 @@ const workflowPaths = [ ] describe("test workflows", () => { - test("use bun test for workflows", () => { + test("use bun test isolation for workflows", () => { for (const workflowPath of workflowPaths) { // #given const workflow = readFileSync(workflowPath, "utf8") - // #then + // #then - should use run-ci-tests.ts for mock isolation expect(workflow).toContain("- name: Run tests") - expect(workflow).toContain("run: bun test") + expect(workflow).toContain("run-ci-tests.ts") } }) })