We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 969db59 commit 2f9df56Copy full SHA for 2f9df56
packages/node/test/manual/webpack-domain/index.js
@@ -22,7 +22,7 @@ Sentry.init({
22
transport: DummyTransport,
23
beforeSend(event) {
24
if (event.message === 'inside') {
25
- if (event.tags.a !== 'x') {
+ if (event.tags.a !== 'x' && event.tags.b !== 'c') {
26
console.error('FAILED: Scope contains incorrect tags');
27
process.exit(1);
28
}
@@ -45,6 +45,7 @@ const d = require('domain').create();
45
d.run(() => {
46
Sentry.configureScope(scope => {
47
scope.setTag('a', 'x');
48
+ scope.setTag('b', 'c');
49
});
50
Sentry.captureMessage('inside');
51
0 commit comments