1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

chore: ignore lint warning in test (#25234)

Noticed this when working on another PR. The test code predates the
addition of our `no-console` rule.
This commit is contained in:
Marvin Hagemeister 2024-08-27 10:48:15 +02:00 committed by GitHub
parent 9b4026563c
commit b6dbe1e256
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -397,6 +397,7 @@ Deno.test(
assertStringIncludes(text, "error");
assertStringIncludes(text, "output");
// deno-lint-ignore no-console
console.log("finished tgis test");
},
);