diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2020-02-25 22:01:24 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-26 01:01:24 -0500 |
commit | 5946808f66aab1983ade3db2541734bb43626a72 (patch) | |
tree | adb526497a9efc29d1b5744ae52449f08f453ef0 /cli/js/os_test.ts | |
parent | e53064c4f22efeb8a4eda2712e15c77d2699a686 (diff) |
tty: Deno.setRaw(rid, mode) to turn on/off raw mode (#3958)
Diffstat (limited to 'cli/js/os_test.ts')
-rw-r--r-- | cli/js/os_test.ts | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cli/js/os_test.ts b/cli/js/os_test.ts index 6e771fe98..cdf72fdd7 100644 --- a/cli/js/os_test.ts +++ b/cli/js/os_test.ts @@ -115,10 +115,6 @@ test(function osPid(): void { assert(Deno.pid > 0); }); -test(function osIsTTYSmoke(): void { - console.log(Deno.isTTY()); -}); - testPerm({ env: true }, function getDir(): void { type supportOS = "mac" | "win" | "linux"; |