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 d110c4e commit b629180Copy full SHA for b629180
packages/tracing-internal/test/browser/metrics/index.test.ts
@@ -17,6 +17,9 @@ const mockWindowLocation = {
17
} as Window['location'];
18
19
const originalWindowLocation = WINDOW.location;
20
+console.log('\n\n WINDOW!! \n\n');
21
+console.log(WINDOW);
22
+console.log('\n\n');
23
const resourceEntryName = 'https://example.com/assets/to/css';
24
25
describe('_addMeasureSpans', () => {
@@ -63,6 +66,9 @@ describe('_addResourceSpans', () => {
63
66
64
67
beforeAll(() => {
65
68
WINDOW.location = mockWindowLocation;
69
+ console.log('\n\n MOCK WINDOW!! \n\n');
70
+ console.log(WINDOW);
71
+ console.log('\n\n');
72
});
73
74
afterAll(() => {
0 commit comments