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 df0810e commit 2aa0047Copy full SHA for 2aa0047
packages/node/test/domain.test.ts
@@ -4,8 +4,9 @@ import * as domain from 'domain';
4
// We need this import here to patch domain on the global object
5
import * as Sentry from '../src';
6
7
-// eslint-disable-next-line no-console
8
-console.log(Sentry.SDK_NAME);
+// TODO This is here because if we don't use the `Sentry` object, the 'concurrent domain hubs' test will fail. Is this a
+// product of treeshaking?
9
+Sentry.getCurrentHub();
10
11
describe('domains', () => {
12
test('without domain', () => {
0 commit comments