Skip to content

Commit 6d64a9b

Browse files
committed
skip on webkit (surprise surprise)
1 parent 5379c13 commit 6d64a9b

File tree

1 file changed

+6
-6
lines changed
  • dev-packages/browser-integration-tests/suites/tracing/metrics/element-timing

1 file changed

+6
-6
lines changed

dev-packages/browser-integration-tests/suites/tracing/metrics/element-timing/test.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import { envelopeRequestParser, shouldSkipTracingTest, waitForTransactionRequest
55

66
sentryTest(
77
'adds element timing spans to pageload span tree for elements rendered during pageload',
8-
async ({ getLocalTestUrl, page }) => {
9-
if (shouldSkipTracingTest()) {
8+
async ({ getLocalTestUrl, page, browserName }) => {
9+
if (shouldSkipTracingTest() || browserName === 'webkit') {
1010
sentryTest.skip();
1111
}
1212

@@ -161,8 +161,8 @@ sentryTest(
161161
},
162162
);
163163

164-
sentryTest('emits element timing spans on navigation', async ({ getLocalTestUrl, page }) => {
165-
if (shouldSkipTracingTest()) {
164+
sentryTest('emits element timing spans on navigation', async ({ getLocalTestUrl, page, browserName }) => {
165+
if (shouldSkipTracingTest() || browserName === 'webkit') {
166166
sentryTest.skip();
167167
}
168168

@@ -212,8 +212,8 @@ sentryTest('emits element timing spans on navigation', async ({ getLocalTestUrl,
212212

213213
// For element timing, we're fine with just always emitting a transaction,
214214
// regardless of a parent span being present or not (as in this case)
215-
sentryTest('emits element timing spans if no parent span is active', async ({ getLocalTestUrl, page }) => {
216-
if (shouldSkipTracingTest()) {
215+
sentryTest('emits element timing spans if no parent span is active', async ({ getLocalTestUrl, page, browserName }) => {
216+
if (shouldSkipTracingTest() || browserName === 'webkit') {
217217
sentryTest.skip();
218218
}
219219

0 commit comments

Comments
 (0)