Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Lms24 committed Jan 27, 2025
1 parent 857cc4b commit 21f87da
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Route } from '@playwright/test';
import { expect } from '@playwright/test';
import { SEMANTIC_ATTRIBUTE_SENTRY_OP, SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, type Event } from '@sentry/core';
import { type Event, SEMANTIC_ATTRIBUTE_SENTRY_OP, SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN } from '@sentry/core';

import { sentryTest } from '../../../../utils/fixtures';
import { getFirstSentryEnvelopeRequest, shouldSkipTracingTest } from '../../../../utils/helpers';
Expand Down Expand Up @@ -74,7 +74,7 @@ sentryTest('should add resource spans to pageload transaction', async ({ getLoca
'http.response_content_length': expect.any(Number),
'http.response_delivery_type': '',
'http.response_transfer_size': expect.any(Number),
'network.protocol.name': 'unknown',
'network.protocol.name': '',
'network.protocol.version': 'unknown',
'resource.render_blocking_status': 'non-blocking',
[SEMANTIC_ATTRIBUTE_SENTRY_OP]: 'resource.img',
Expand All @@ -99,7 +99,7 @@ sentryTest('should add resource spans to pageload transaction', async ({ getLoca
'http.response_content_length': expect.any(Number),
'http.response_delivery_type': '',
'http.response_transfer_size': expect.any(Number),
'network.protocol.name': 'unknown',
'network.protocol.name': '',
'network.protocol.version': 'unknown',
'resource.render_blocking_status': 'non-blocking',
[SEMANTIC_ATTRIBUTE_SENTRY_OP]: 'resource.link',
Expand All @@ -124,7 +124,7 @@ sentryTest('should add resource spans to pageload transaction', async ({ getLoca
'http.response_content_length': expect.any(Number),
'http.response_delivery_type': '',
'http.response_transfer_size': expect.any(Number),
'network.protocol.name': 'unknown',
'network.protocol.name': '',
'network.protocol.version': 'unknown',
'resource.render_blocking_status': 'non-blocking',
'sentry.op': 'resource.script',
Expand Down

0 comments on commit 21f87da

Please sign in to comment.