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") } }) })