diff --git a/packages/core/src/shared/performance/performance.ts b/packages/core/src/shared/performance/performance.ts index f5d65b05ab4..39abd37b96f 100644 --- a/packages/core/src/shared/performance/performance.ts +++ b/packages/core/src/shared/performance/performance.ts @@ -102,8 +102,8 @@ export function performanceTest( const testOption = options[process.platform as 'linux' | 'darwin' | 'win32'] const totalTestRuns = options.testRuns ?? 10 - - return describe(`${name} performance tests`, () => { + // TODO: unskip this once flakiness is reduced. + return describe.skip(`${name} performance tests`, () => { let performanceTracker: PerformanceTracker | undefined const testRunMetrics: PerformanceMetrics[] = []