diff options
author | Marvin Hagemeister <marvin@deno.com> | 2024-08-27 10:48:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-27 08:48:15 +0000 |
commit | b6dbe1e256948293fd95a11740f68da7361e652b (patch) | |
tree | 0c199a2533d60bf4ac3b15e809b641fbf33a70d0 /tests/unit | |
parent | 9b4026563c38309229fcf802650fbd50436c70d8 (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.
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/process_test.ts | 1 |
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"); }, ); |