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 b629180 commit 4152918Copy full SHA for 4152918
packages/tracing-internal/test/browser/metrics/index.test.ts
@@ -18,7 +18,7 @@ const mockWindowLocation = {
18
19
const originalWindowLocation = WINDOW.location;
20
console.log('\n\n WINDOW!! \n\n');
21
-console.log(WINDOW);
+console.log(WINDOW.location);
22
console.log('\n\n');
23
const resourceEntryName = 'https://example.com/assets/to/css';
24
@@ -67,7 +67,7 @@ describe('_addResourceSpans', () => {
67
beforeAll(() => {
68
WINDOW.location = mockWindowLocation;
69
console.log('\n\n MOCK WINDOW!! \n\n');
70
- console.log(WINDOW);
+ console.log(WINDOW.location);
71
72
});
73
0 commit comments