summaryrefslogtreecommitdiff
path: root/js/os_test.ts
AgeCommit message (Collapse)Author
2019-02-02Add isTTY function (#1622)Dmitry Sharshakov
2019-01-21chore: update license lines (#1557)Yoshiya Hinosawa
2019-01-13Remove unnecessary async keyword in test file (#1507)JaePil Jung
2019-01-06Add deno.pid (#1464)Ryan Dahl
2018-09-12feat: add deno.makeTempDirYoshiya Hinosawa
2018-09-12Implement deno.rename() (#731)Mani Maghsoudlou
2018-09-11Implement deno.stat() and deno.lstat()Sajjad Hashemian
2018-09-11Move writeFileSync to write_file.ts, add writeFile and tests (#728)Kevin (Kun) "Kassimo" Qian
2018-09-10Implement deno.mkdir()Sajjad Hashemian
2018-09-10Implement deno.readFile()Ryan Dahl
As an example of how to implement ops that have both sync and async versions.
2018-09-09Expose deno.ErrorKindRyan Dahl
Originally we planned to have a JS class for each error code. But it seems better to just have a single DenoError class with a "kind" property. One nice thing about using an enum instead of classes for errors is that switch() can be used during error handling instead of a bunch of instanceof branches.
2018-09-05FormatRyan Dahl
2018-09-04lStat -> lstatRyan Dahl
2018-09-04Implement renameSyncMani Maghsoudlou
2018-09-03Implement mkdirSyncSajjad Hashemian
2018-08-31Implemented deno.env and refactored flags.rsAaron Power
2018-08-30Reorganize js/unit_tests.tsRyan Dahl