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
4 changes: 2 additions & 2 deletions packages/core/src/shared/performance/performance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ export function performanceTest<TSetup, TExecute>(
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[] = []

Expand Down
Loading