We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1ddb1ac + 82cae41 commit 9b5ec0dCopy full SHA for 9b5ec0d
packages/core/src/shared/performance/performance.ts
@@ -102,8 +102,8 @@ export function performanceTest<TSetup, TExecute>(
102
const testOption = options[process.platform as 'linux' | 'darwin' | 'win32']
103
104
const totalTestRuns = options.testRuns ?? 10
105
-
106
- return describe(`${name} performance tests`, () => {
+ // TODO: unskip this once flakiness is reduced.
+ return describe.skip(`${name} performance tests`, () => {
107
let performanceTracker: PerformanceTracker | undefined
108
const testRunMetrics: PerformanceMetrics[] = []
109
0 commit comments