summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Hagemeister <marvin@deno.com>2024-08-27 10:48:15 +0200
committerGitHub <noreply@github.com>2024-08-27 08:48:15 +0000
commitb6dbe1e256948293fd95a11740f68da7361e652b (patch)
tree0c199a2533d60bf4ac3b15e809b641fbf33a70d0
parent9b4026563c38309229fcf802650fbd50436c70d8 (diff)
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.
-rw-r--r--tests/unit/process_test.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/unit/process_test.ts b/tests/unit/process_test.ts
index 111b18421..799c8d12c 100644
--- a/tests/unit/process_test.ts
+++ b/tests/unit/process_test.ts
@@ -397,6 +397,7 @@ Deno.test(
assertStringIncludes(text, "error");
assertStringIncludes(text, "output");
+ // deno-lint-ignore no-console
console.log("finished tgis test");
},
);