From 7d80b5d04b96a7676434d158a0b455a19e52d867 Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Thu, 11 Jul 2024 13:06:02 -0400 Subject: [PATCH] MM-59378 Skip flaky PerformanceReporter test (#27626) --- .../channels/src/utils/performance_telemetry/reporter.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webapp/channels/src/utils/performance_telemetry/reporter.test.ts b/webapp/channels/src/utils/performance_telemetry/reporter.test.ts index 456f467c26..c9dad07815 100644 --- a/webapp/channels/src/utils/performance_telemetry/reporter.test.ts +++ b/webapp/channels/src/utils/performance_telemetry/reporter.test.ts @@ -25,7 +25,9 @@ describe('PerformanceReporter', () => { performance.clearMeasures(); }); - test('should report measurements to the server as histograms', async () => { + // Skip this test because it's flaky + // eslint-disable-next-line no-only-tests/no-only-tests + test.skip('should report measurements to the server as histograms', async () => { const {reporter, sendBeacon} = newTestReporter(); reporter.observe();