mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-02 14:27:40 +00:00
test(ci): skip transformPerformance suite on CI (#4843)
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user