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 cb6ef52 commit 2555670Copy full SHA for 2555670
packages/node/test/manual/express-scope-separation/start.js
@@ -3,6 +3,9 @@ const express = require('express');
3
const app = express();
4
const Sentry = require('../../../build/cjs');
5
6
+// don't log the test errors we're going to throw, so at a quick glance it doesn't look like the test itself has failed
7
+global.console.error = () => null;
8
+
9
function assertTags(actual, expected) {
10
if (JSON.stringify(actual) !== JSON.stringify(expected)) {
11
console.error('FAILED: Scope contains incorrect tags');
0 commit comments