Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
test(ci): skip transformPerformance vitest suite on CI to avoid perf …
…flakiness
  • Loading branch information
benceruleanlu committed Aug 8, 2025
commit 29b4dfc6dcbd1375351a63fcc3e067e2ae63f75c
6 changes: 5 additions & 1 deletion tests-ui/tests/performance/transformPerformance.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ const createMockCanvasContext = () => ({
}
})

describe('Transform Performance', () => {
// Skip this entire suite on CI to avoid flaky performance timing
const isCI = Boolean(process.env.CI)
const describeIfNotCI = isCI ? describe.skip : describe

describeIfNotCI('Transform Performance', () => {
let transformState: ReturnType<typeof useTransformState>
let mockCanvas: any

Expand Down
Loading