Skip to content

Commit 77c9fbc

Browse files
committed
test(browser): Remove skip test
Signed-off-by: Kaung Zin Hein <[email protected]>
1 parent 4614a55 commit 77c9fbc

File tree

2 files changed

+4
-12
lines changed
  • dev-packages/browser-integration-tests/suites/integrations/graphqlClient

2 files changed

+4
-12
lines changed

dev-packages/browser-integration-tests/suites/integrations/graphqlClient/fetch/test.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,9 @@ import { expect } from '@playwright/test';
22
import type { Event } from '@sentry/types';
33

44
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';
116

7+
sentryTest('should create spans for GraphQL Fetch requests', async ({ getLocalTestPath, page }) => {
128
const url = await getLocalTestPath({ testDir: __dirname });
139

1410
await page.route('**/foo', route => {

dev-packages/browser-integration-tests/suites/integrations/graphqlClient/xhr/test.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,9 @@ import { expect } from '@playwright/test';
22
import type { Event } from '@sentry/types';
33

44
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';
116

7+
sentryTest('should create spans for GraphQL XHR requests', async ({ getLocalTestPath, page }) => {
128
const url = await getLocalTestPath({ testDir: __dirname });
139

1410
await page.route('**/foo', route => {

0 commit comments

Comments
 (0)