perf(test): fix eslint issues in test-setup.ts

This commit is contained in:
mkorwel
2026-04-14 23:36:16 -07:00
parent 78c8ace77f
commit 618bfee8e4
+1 -1
View File
@@ -40,7 +40,7 @@ const createNoiseFilter = (method: keyof Console) => {
const original = console[method];
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(console as any)[method] = new Proxy(original, {
apply(target, thisArg, argArray: any[]) {
apply(target: any, thisArg: any, argArray: any[]) {
const firstArg = String(argArray[0]);
if (noiseStrings.some((s) => firstArg.includes(s))) {
return;