summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/setupTests.ts
blob: 5b6efcf364da64d555ff50909440af3fc1fef4e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Silence some console output
// jest.spyOn(console, 'log').mockImplementation();
// jest.spyOn(console, 'debug').mockImplementation();
// jest.spyOn(console, 'error').mockImplementation();

/**
 * JSDom doesn't seem to support `credentials`, so let's define them here so we can mock their
 * implementations in specific tests.
 */
Object.defineProperty(window.navigator, 'credentials', {
  writable: true,
  value: {
    create: jest.fn(),
    get: jest.fn(),
  },
});

/**
 * Allow for setting values to `window.location.hostname`
 */
Object.defineProperty(window, 'location', {
  writable: true,
  value: {
    hostname: '',
  },
});