summaryrefslogtreecommitdiff
path: root/cli/tests/unit/opcall_test.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2021-10-28 08:43:40 +1100
committerGitHub <noreply@github.com>2021-10-28 08:43:40 +1100
commita065604155991dbf4417b606d4562d275cd8955f (patch)
tree7f7048d25741e503d795fb9dcc66ca32b4b4fbd0 /cli/tests/unit/opcall_test.ts
parentbe68b82eb43f8e6156bad562b292af11776d38b8 (diff)
feat(cli): enable `useUnknownInCatchVariables` by default (#12547)
Closes #11826 **BREAKING CHANGE** this behaviour was disable when introduced in Deno 1.14/TypeScript 4.4. It will highlight code that unsafely handles variables that are caught, and will cause type errors in unsafe code.
Diffstat (limited to 'cli/tests/unit/opcall_test.ts')
-rw-r--r--cli/tests/unit/opcall_test.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/cli/tests/unit/opcall_test.ts b/cli/tests/unit/opcall_test.ts
index 7e3685320..e38f481d9 100644
--- a/cli/tests/unit/opcall_test.ts
+++ b/cli/tests/unit/opcall_test.ts
@@ -12,7 +12,9 @@ unitTest(async function sendAsyncStackTrace() {
await Deno.read(rid, buf);
unreachable();
} catch (error) {
- const s = error.stack.toString();
+ assert(error instanceof Error);
+ const s = error.stack?.toString();
+ assert(s);
console.log(s);
assertStringIncludes(s, "opcall_test.ts");
assertStringIncludes(s, "read");