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 3cf6d5c commit 249a39dCopy full SHA for 249a39d
packages/node/test/sdk/init.test.ts
@@ -27,6 +27,9 @@ describe('init()', () => {
27
beforeEach(() => {
28
global.__SENTRY__ = {};
29
30
+ // prevent the logger from being enabled, resulting in console.log calls
31
+ vi.spyOn(logger, 'enable').mockImplementation(() => {});
32
+
33
mockAutoPerformanceIntegrations = vi.spyOn(auto, 'getAutoPerformanceIntegrations').mockImplementation(() => []);
34
});
35
0 commit comments