summaryrefslogtreecommitdiff
path: root/js/unit_tests.ts
AgeCommit message (Collapse)Author
2018-10-13Add cwd() and chdir() (#907)Shiva Prasanth
2018-10-11Add deno.metrics()Bartek Iwańczuk
2018-10-03First pass at support for TCP servers and clients. (#884)Ryan Dahl
Adds deno.listen(), deno.dial(), deno.Listener and deno.Conn.
2018-10-03Implemented readDirSync, readDirJ2P
2018-09-30Add copyFile/copyFileSync (#863)Kevin (Kun) "Kassimo" Qian
2018-09-30Add deno.truncate (#805)ztplz
2018-09-28Adds basic File I/O and FD table.Ryan Dahl
Adds deno.stdin, deno.stdout, deno.stderr, deno.open(), deno.write(), deno.read(), deno.Reader, deno.Writer, deno.copy(). Fixes #721. tests/cat.ts works.
2018-09-25Implement deno.readlink() (#797)Mani Maghsoudlou
2018-09-24Add `toString` for CallSite of eval origin (#809)Kevin (Kun) "Kassimo" Qian
2018-09-24Start testing website (#813)Yoshiya Hinosawa
2018-09-22Implement deno.trace() (#795)Kevin (Kun) "Kassimo" Qian
2018-09-20Add atob() and btoa() (#776)Kevin (Kun) "Kassimo" Qian
2018-09-20Add deno.arch/deno.platform (#773)Kevin (Kun) "Kassimo" Qian
2018-09-18Implement deno.symlink() (#742)Mani Maghsoudlou
2018-09-16Remove remove_timer asserts (#760)Kevin (Kun) "Kassimo" Qian
* Remove remove_timer asserts * Add clearTimeout invalid id no-panic test * Move timer test to its file AND some lint side-effects
2018-09-14Implement BlobParsa Ghadimi
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-08-30Reorganize js/unit_tests.tsRyan Dahl
2018-08-30Implemented statSync and lStatSyncAaron Power
2018-08-29Implement makeTempDirSync()Bert Belder
2018-08-27Add ability to unit test by permissions.Ryan Dahl
2018-08-27Moved console tests to own file, and switched circular test to use stringify ↵Aaron Power
with assertEqual
2018-08-27Fixed printing strings in arrays & objects without quotesAaron Power
2018-08-22Implement writeFileSyncRyan Dahl
In collaboration with Tommy Savaria <tommy.savaria@protonmail.ch>
2018-08-22runtime.ts refactor into compiler.ts (#564)Ryan Dahl
Adds compiler_test.ts
2018-08-21Better error handling in src/handlers.rsRyan Dahl
Introduces error codes that are shared between JS/RS Fixes #526.
2018-08-20First pass at fetch()Ryan Dahl
With help from Thomas Ghysels <info@thomasg.be>
2018-08-11Use unit_tests for readFileSync testing.Ryan Dahl
2018-08-09Adds js/unit_tests.ts (#448)Ryan Dahl