test(ci): skip transformPerformance suite on CI (#4843)

This commit is contained in:
Benjamin Lu
2025-08-08 21:15:18 -04:00
committed by GitHub
parent 2c121a4a3c
commit 7a8f539468

View File

@@ -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