Skip to content

Commit

Permalink
skip non chromium e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-lebeau committed May 16, 2024
1 parent ad5e1b2 commit 84d8e5e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/e2e/scenario/rum/resources.scenario.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ describe('rum resources', () => {
expect(resourceEvent.resource.redirect!.duration).toBeGreaterThan(0)
})

createTest('track concurent fetch to same resource')
createTest('track concurrent fetch to same resource')
.withRum()
.withSetup(bundleSetup)
.run(async ({ intakeRegistry }) => {
Expand All @@ -227,6 +227,10 @@ describe('rum resources', () => {
.catch(() => done())
})

if (!browser.isChromium) {
pending('Only Chromium based browsers will emit predictable timings events for concurrent fetches')
}

await flushEvents()

const resourceEvents = intakeRegistry.rumResourceEvents.filter((event) => event.resource.type === 'fetch')
Expand Down

0 comments on commit 84d8e5e

Please sign in to comment.