Skip to content

Commit 3d93323

Browse files
committed
formatting
1 parent ddbf336 commit 3d93323

File tree

3 files changed

+9
-9
lines changed
  • dev-packages/browser-integration-tests/suites
    • public-api/startSpan/basic
    • tracing/browserTracingIntegration

3 files changed

+9
-9
lines changed

dev-packages/browser-integration-tests/suites/public-api/startSpan/basic/test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
import { expect } from '@playwright/test';
22

3+
import {
4+
SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN,
5+
SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE,
6+
SEMANTIC_ATTRIBUTE_SENTRY_SOURCE,
7+
} from '@sentry/browser';
38
import { sentryTest } from '../../../../utils/fixtures';
49
import {
510
envelopeRequestParser,
611
shouldSkipTracingTest,
712
waitForTransactionRequestOnUrl,
813
} from '../../../../utils/helpers';
9-
import {
10-
SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN,
11-
SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE,
12-
SEMANTIC_ATTRIBUTE_SENTRY_SOURCE,
13-
} from '@sentry/browser';
1414

1515
sentryTest(
1616
'sends a transaction in an envelope with manual origin and custom source',

dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/pageload-update-txn-name/test.ts

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

4-
import { sentryTest } from '../../../../utils/fixtures';
5-
import { getFirstSentryEnvelopeRequest, shouldSkipTracingTest } from '../../../../utils/helpers';
64
import {
75
SEMANTIC_ATTRIBUTE_SENTRY_OP,
86
SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN,
97
SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE,
108
SEMANTIC_ATTRIBUTE_SENTRY_SOURCE,
119
} from '@sentry/browser';
10+
import { sentryTest } from '../../../../utils/fixtures';
11+
import { getFirstSentryEnvelopeRequest, shouldSkipTracingTest } from '../../../../utils/helpers';
1212

1313
sentryTest('sets the source to custom when updating the transaction name', async ({ getLocalTestPath, page }) => {
1414
if (shouldSkipTracingTest()) {

dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/pageload/test.ts

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

4-
import { sentryTest } from '../../../../utils/fixtures';
5-
import { getFirstSentryEnvelopeRequest, shouldSkipTracingTest } from '../../../../utils/helpers';
64
import {
75
SEMANTIC_ATTRIBUTE_SENTRY_OP,
86
SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN,
97
SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE,
108
SEMANTIC_ATTRIBUTE_SENTRY_SOURCE,
119
} from '@sentry/browser';
10+
import { sentryTest } from '../../../../utils/fixtures';
11+
import { getFirstSentryEnvelopeRequest, shouldSkipTracingTest } from '../../../../utils/helpers';
1212

1313
sentryTest('creates a pageload transaction with url as source', async ({ getLocalTestPath, page }) => {
1414
if (shouldSkipTracingTest()) {

0 commit comments

Comments
 (0)