Skip to content

Commit 77fe344

Browse files
committed
fix tests
1 parent 2d4ca0a commit 77fe344

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
@@ -836,8 +836,8 @@ options, you have to explicitly set them like this:
836836
Sentry.init({
837837
integrations: [
838838
Sentry.replayIntegration({
839-
unblock: '.sentry-unblock, [data-sentry-unblock]',
840-
unmask: '.sentry-unmask, [data-sentry-unmask]',
839+
unblock: ['.sentry-unblock, [data-sentry-unblock]'],
840+
unmask: ['.sentry-unmask, [data-sentry-unmask]'],
841841
}),
842842
],
843843
});

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

0 commit comments

Comments
 (0)