ci: add fast test budget warning

This commit is contained in:
Tam Nhu Tran
2026-04-23 17:25:48 -04:00
parent 1852a9543c
commit 4c677507d0
4 changed files with 57 additions and 12 deletions
@@ -27,7 +27,12 @@ describe('push ci workflow', () => {
expect(workflow).toContain("cmd: 'bun run lint'");
expect(workflow).toContain("cmd: 'bun run format:check'");
expect(workflow).toContain('run: bun run build:all');
expect(workflow).toContain('run: bun run test:all');
expect(workflow).toContain("FAST_TEST_BUDGET_SECONDS: '90'");
expect(workflow).toContain('name: Test fast bucket with perf budget');
expect(workflow).toContain('bun run test:fast');
expect(workflow).toContain('::warning::test:fast took ${elapsed_seconds}s');
expect(workflow).toContain('scripts/run-test-bucket.js');
expect(workflow).toContain('run: bun run test:slow');
expect(workflow).toContain("CCS_E2E_SKIP_BUILD: '1'");
expect(workflow).toContain('run: bun run test:e2e');
});