Skip to content

Commit 3a1760e

Browse files
committed
fix tests
1 parent 35279dd commit 3a1760e

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
@@ -749,8 +749,8 @@ options, you have to explicitly set them like this:
749749
Sentry.init({
750750
integrations: [
751751
Sentry.replayIntegration({
752-
unblock: '.sentry-unblock, [data-sentry-unblock]',
753-
unmask: '.sentry-unmask, [data-sentry-unmask]',
752+
unblock: ['.sentry-unblock, [data-sentry-unblock]'],
753+
unmask: ['.sentry-unmask, [data-sentry-unmask]'],
754754
}),
755755
],
756756
});

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)