mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-16 06:43:07 -07:00
perf(test): fix eslint issues in test-setup.ts
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user