File tree Expand file tree Collapse file tree 2 files changed +4
-12
lines changed
dev-packages/browser-integration-tests/suites/integrations/graphqlClient Expand file tree Collapse file tree 2 files changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -2,13 +2,9 @@ import { expect } from '@playwright/test';
2
2
import type { Event } from '@sentry/types' ;
3
3
4
4
import { sentryTest } from '../../../../utils/fixtures' ;
5
- import { getFirstSentryEnvelopeRequest , shouldSkipTracingTest } from '../../../../utils/helpers' ;
6
-
7
- sentryTest . only ( 'should create spans for GraphQL Fetch requests' , async ( { getLocalTestPath, page } ) => {
8
- if ( shouldSkipTracingTest ( ) ) {
9
- sentryTest . skip ( ) ;
10
- }
5
+ import { getFirstSentryEnvelopeRequest } from '../../../../utils/helpers' ;
11
6
7
+ sentryTest ( 'should create spans for GraphQL Fetch requests' , async ( { getLocalTestPath, page } ) => {
12
8
const url = await getLocalTestPath ( { testDir : __dirname } ) ;
13
9
14
10
await page . route ( '**/foo' , route => {
Original file line number Diff line number Diff line change @@ -2,13 +2,9 @@ import { expect } from '@playwright/test';
2
2
import type { Event } from '@sentry/types' ;
3
3
4
4
import { sentryTest } from '../../../../utils/fixtures' ;
5
- import { getFirstSentryEnvelopeRequest , shouldSkipTracingTest } from '../../../../utils/helpers' ;
6
-
7
- sentryTest . only ( 'should create spans for GraphQL XHR requests' , async ( { getLocalTestPath, page } ) => {
8
- if ( shouldSkipTracingTest ( ) ) {
9
- sentryTest . skip ( ) ;
10
- }
5
+ import { getFirstSentryEnvelopeRequest } from '../../../../utils/helpers' ;
11
6
7
+ sentryTest ( 'should create spans for GraphQL XHR requests' , async ( { getLocalTestPath, page } ) => {
12
8
const url = await getLocalTestPath ( { testDir : __dirname } ) ;
13
9
14
10
await page . route ( '**/foo' , route => {
You can’t perform that action at this time.
0 commit comments