diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2022-03-02 07:44:43 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-02 07:44:43 +1100 |
commit | 7fc5bfe51b7d405aaa5293ec6f1a8f1e9119aea2 (patch) | |
tree | 440bd7c939407adc69bedfb678ee16538353073e /cli/tests/unit/console_test.ts | |
parent | 4be0365fb8251a8614f16e6162f4f43c9885d2a3 (diff) |
feat(cli): update to TypeScript 4.6.2 (#13474)
Diffstat (limited to 'cli/tests/unit/console_test.ts')
-rw-r--r-- | cli/tests/unit/console_test.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/tests/unit/console_test.ts b/cli/tests/unit/console_test.ts index af78cf49e..97c84b690 100644 --- a/cli/tests/unit/console_test.ts +++ b/cli/tests/unit/console_test.ts @@ -1895,6 +1895,7 @@ Deno.test(function inspectErrorCircular() { cause: new Error("This is a cause error"), }); error1.cause = error1; + assert(error2.cause); error2.cause.cause = error2; assertStringIncludes( |