Skip to content

Commit c48d5b2

Browse files
committed
fix tests
1 parent bd26846 commit c48d5b2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

MIGRATION.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -786,8 +786,8 @@ options, you have to explicitly set them like this:
786786
Sentry.init({
787787
integrations: [
788788
Sentry.replayIntegration({
789-
unblock: '.sentry-unblock, [data-sentry-unblock]',
790-
unmask: '.sentry-unmask, [data-sentry-unmask]',
789+
unblock: ['.sentry-unblock, [data-sentry-unblock]'],
790+
unmask: ['.sentry-unmask, [data-sentry-unmask]'],
791791
}),
792792
],
793793
});

dev-packages/browser-integration-tests/suites/replay/customEvents/init.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ window.Replay = Sentry.replayIntegration({
77
minReplayDuration: 0,
88
useCompression: false,
99
blockAllMedia: false,
10+
unmask: ['.sentry-unmask, [data-sentry-unmask]'],
1011
});
1112

1213
Sentry.init({

dev-packages/browser-integration-tests/suites/replay/privacyBlock/init.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ window.Replay = Sentry.replayIntegration({
88
useCompression: false,
99
blockAllMedia: false,
1010
block: ['link[rel="icon"]', 'video', '.nested-hide'],
11+
unmask: ['.sentry-unmask, [data-sentry-unmask]'],
1112
});
1213

1314
Sentry.init({

packages/replay/MIGRATION.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# End of Replay Beta
22

3-
Sentry Replay is now out of Beta. This means that the usual stability guarantees apply.
4-
53
> For further migration changes please refer to the [general SDK migration notes](../../MIGRATION.md).
64
75
Because of experimentation and rapid iteration, during the Beta period some bugs and problems came up which have since been fixed/improved.

0 commit comments

Comments
 (0)