diff options
author | Matthew Miller <matthew@millerti.me> | 2020-05-21 17:18:48 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-05-21 17:18:48 -0700 |
commit | 50247d5c97d3d7c04a8052618d6477e2b072d59c (patch) | |
tree | eebb167bd67374b247bdd6a9620a63c1df0b6a19 /packages/browser/src/setupTests.ts | |
parent | 375b798df52576978dd62aeaf3459efb79fdc122 (diff) |
Comment out console spies in browser
Diffstat (limited to 'packages/browser/src/setupTests.ts')
-rw-r--r-- | packages/browser/src/setupTests.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/browser/src/setupTests.ts b/packages/browser/src/setupTests.ts index dcb981e..019ba42 100644 --- a/packages/browser/src/setupTests.ts +++ b/packages/browser/src/setupTests.ts @@ -1,6 +1,7 @@ // Silence some console output -jest.spyOn(console, 'log').mockImplementation(); -jest.spyOn(console, 'debug').mockImplementation(); +// 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 |