test: update workflow test to expect run-ci-tests.ts

This commit is contained in:
YeonGyu-Kim
2026-04-05 01:17:19 +09:00
parent 63aa1c3e1d
commit d6add1f56d
+3 -3
View File
@@ -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")
}
})
})