Skip to content

Commit b629180

Browse files
committed
add logging
1 parent d110c4e commit b629180

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

packages/tracing-internal/test/browser/metrics/index.test.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ const mockWindowLocation = {
1717
} as Window['location'];
1818

1919
const originalWindowLocation = WINDOW.location;
20+
console.log('\n\n WINDOW!! \n\n');
21+
console.log(WINDOW);
22+
console.log('\n\n');
2023
const resourceEntryName = 'https://example.com/assets/to/css';
2124

2225
describe('_addMeasureSpans', () => {
@@ -63,6 +66,9 @@ describe('_addResourceSpans', () => {
6366

6467
beforeAll(() => {
6568
WINDOW.location = mockWindowLocation;
69+
console.log('\n\n MOCK WINDOW!! \n\n');
70+
console.log(WINDOW);
71+
console.log('\n\n');
6672
});
6773

6874
afterAll(() => {

0 commit comments

Comments
 (0)