Skip to content

Commit ce6af54

Browse files
committed
add integrations entry for replay bundles
1 parent 9b5710e commit ce6af54

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,6 @@ jobs:
586586
env:
587587
PW_BUNDLE: ${{ matrix.bundle }}
588588
PW_TRACING_ONLY: ${{ matrix.tracing_only }}
589-
PW_REPLAY: ${{ matrix.replay }}
590589
run: |
591590
cd packages/integration-tests
592591
yarn test:ci

packages/integration-tests/suites/integrations/httpclient/init.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as Sentry from '@sentry/browser';
22
import { HttpClient } from '@sentry/integrations';
33

4-
window.Sentry = Sentry;
4+
// window.Sentry = Sentry;
55

66
Sentry.init({
77
dsn: 'https://[email protected]/1337',

packages/integration-tests/utils/generatePlugin.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ const BUNDLE_PATHS: Record<string, Record<string, string>> = {
4444
bundle_es5_min: 'build/bundles/[INTEGRATION_NAME].es5.min.js',
4545
bundle_es6: 'build/bundles/[INTEGRATION_NAME].js',
4646
bundle_es6_min: 'build/bundles/[INTEGRATION_NAME].min.js',
47+
bundle_replay_es6: 'build/bundles/[INTEGRATION_NAME].js',
48+
bundle_replay_es6_min: 'build/bundles/[INTEGRATION_NAME].min.js',
4749
},
4850
};
4951

0 commit comments

Comments
 (0)