Skip to content

Commit

Permalink
undo adding eslint comments inline, broke the warning suppression
Browse files Browse the repository at this point in the history
  • Loading branch information
eburdekin committed Oct 7, 2024
1 parent b06b783 commit 2cd878d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions products/statement-generator/src/setupTests.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import '@testing-library/jest-dom';

// Override console.warn to suppress specific warnings
const originalWarn = console.warn; // eslint-disable-line no-console
// eslint-disable-next-line no-console
const originalWarn = console.warn;

console.warn = (...args) => {
if (
!args[0].includes(
Expand Down

0 comments on commit 2cd878d

Please sign in to comment.