diff options
author | Feng Yu <F3n67u@outlook.com> | 2021-10-11 21:21:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-11 15:21:18 +0200 |
commit | 668b400ff2fa5634f575e54f40ab1f0b78fcdf16 (patch) | |
tree | a5eacaf3e9f4822ea9ace0bc117ebcfd09fc8922 /cli/tests/unit/dir_test.ts | |
parent | 423b02d8891c73f1b2864271796b067c81007f50 (diff) |
feat(runtime): improve error messages of runtime fs (#11984)
This commit annotates errors returned from FS Deno APIs to include
paths that were passed to the API calls.
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/tests/unit/dir_test.ts')
-rw-r--r-- | cli/tests/unit/dir_test.ts | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/cli/tests/unit/dir_test.ts b/cli/tests/unit/dir_test.ts index fdcab5ddf..bcddb744a 100644 --- a/cli/tests/unit/dir_test.ts +++ b/cli/tests/unit/dir_test.ts @@ -52,8 +52,12 @@ unitTest( { permissions: { read: true, write: true } }, function dirChdirError() { const path = Deno.makeTempDirSync() + "test"; - assertThrows(() => { - Deno.chdir(path); - }, Deno.errors.NotFound); + assertThrows( + () => { + Deno.chdir(path); + }, + Deno.errors.NotFound, + `chdir '${path}'`, + ); }, ); |