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 35d09fc commit 7fc5525Copy full SHA for 7fc5525
__tests__/NavBar.test.tsx
@@ -31,14 +31,14 @@ jest.mock('file-saver', () => ({
31
saveAs: jest.fn(),
32
}));
33
34
-const originalError = console.error;
35
-beforeAll(() => {
36
- console.error = jest.fn();
37
-});
38
-
39
-afterAll(() => {
40
- console.error = originalError;
41
+// const originalError = console.error;
+// beforeAll(() => {
+// console.error = jest.fn();
+// });
+
+// afterAll(() => {
+// console.error = originalError;
42
43
// Mocking the render
44
const renderNavBar = (store) => {
0 commit comments