diff --git a/packages/faustwp-core/tests/apollo/errorLoggingLink.test.ts b/packages/faustwp-core/tests/apollo/errorLoggingLink.test.ts index ff9ef4f29..e5af07f8e 100644 --- a/packages/faustwp-core/tests/apollo/errorLoggingLink.test.ts +++ b/packages/faustwp-core/tests/apollo/errorLoggingLink.test.ts @@ -2,9 +2,6 @@ import { ApolloError } from '@apollo/client/core'; import { Observable } from 'zen-observable-ts'; import { ErrorLoggingLink } from '../../src/apollo/errorLoggingLink'; -// Mock console.error to prevent actual logging during tests -jest.spyOn(console, 'error').mockImplementation(() => {}); - describe('ErrorLoggingLink', () => { let link: ErrorLoggingLink; let mockNextLink: jest.Mock;