From 89fd302db4da95346602e15f7cf9124c9fc9120c Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Sat, 4 Apr 2026 18:56:26 +0900 Subject: [PATCH] Update publish-workflow test for bun test command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change test expectation from "bun run test:ci" to "bun test" 🤖 GENERATED WITH ASSISTANCE OF OhMyOpenCode --- script/publish-workflow.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/script/publish-workflow.test.ts b/script/publish-workflow.test.ts index 18c667d63..9328f8c09 100644 --- a/script/publish-workflow.test.ts +++ b/script/publish-workflow.test.ts @@ -9,14 +9,14 @@ const workflowPaths = [ ] describe("test workflows", () => { - test("use the CI-safe test runner for workflows", () => { + test("use bun test for workflows", () => { for (const workflowPath of workflowPaths) { - // given + // #given const workflow = readFileSync(workflowPath, "utf8") - // then + // #then expect(workflow).toContain("- name: Run tests") - expect(workflow).toContain("run: bun run test:ci") + expect(workflow).toContain("run: bun test") } }) })