Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
formatting
  • Loading branch information
Lms24 committed Jan 28, 2025
commit 49ac3b2f1a1addbd3f3a7bf4fa8fee5072087515
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