summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2018-12-27fix(test): fix test of unbuffered_stderrYoshiya Hinosawa
2018-12-23Remove support for extensionless import (#1396)Ryan Dahl
2018-12-22make stdout unbuffered (#1355)Yoshiya Hinosawa
2018-12-21Implement `Body.formData` for fetch (#1393)Kevin (Kun) "Kassimo" Qian
2018-12-14Fix typo in tests (#1342)迷渡
2018-12-11Use default filename for Isolate::execute.Ryan Dahl
2018-12-10Use stderr for exceptions (#1303)Ryan Dahl
2018-12-06Process source maps in Rust instead of JS (#1280)Ryan Dahl
- Improves speed and binary size significantly. - Makes deno_last_exception() output a JSON structure. - Isolate::execute and Isolate::event_loop now return structured, mapped JSError objects on errors. - Removes libdeno functions: libdeno.setGlobalErrorHandler() libdeno.setPromiseRejectHandler() libdeno.setPromiseErrorExaminer() In collaboration with Ryan Dahl.
2018-11-20Split Runner from CompilerKitson Kelly
2018-11-09Ensure global type instances are available.Kitson Kelly
2018-11-05Omit sources from source maps in bundle.Kitson Kelly
2018-11-04Improve integration test harness (#1142)Kitson Kelly
2018-10-30Add ability to load JSON as modules (#1065)Kitson Kelly
2018-10-30Add resources op (#1119)Bartek Iwańczuk
2018-10-28Add application/x-typescript mime type supportKevin (Kun) "Kassimo" Qian
2018-10-24Support CheckJSKitson Kelly
2018-10-23Add node_tcp target to http_benchmark. (#1074)Ryan Dahl
2018-10-23Revert "Support CheckJS"Ryan Dahl
Broken in master. This reverts commit dd230d520b5599c0e51cf30245a567f07b3cfb28.
2018-10-23Support CheckJSKitson Kelly
2018-10-23Enforce media typesKitson Kelly
2018-10-22Improve globals for runtime type libraryKitson Kelly
2018-10-16First pass at http benchmark.Ryan Dahl
2018-10-15Update to TypeScript 3.1 and ts-simple-ast 17 (#980)Kitson Kelly
2018-10-13Remove deno name assumption from testsKevin (Kun) "Kassimo" Qian
2018-10-12Fix promise reject issue (#936)Kevin (Kun) "Kassimo" Qian
2018-10-11Replace globals.d.ts with lib.deno_runtime.d.tsKitson Kelly
2018-10-11Add throughput benchmark (#961)Ryan Dahl
2018-10-09Add redirect follow feature (#934)Kevin (Kun) "Kassimo" Qian
2018-10-08Check thrown type, print String(...) if not instance of error (#939)Kevin (Kun) "Kassimo" Qian
Fixes #935
2018-10-06Add failing test for #919.Kevin (Kun) "Kassimo" Qian
2018-10-05Changed tools/lint.py to lint the entire js and tests directories. (#900)Chris Bystrek
* Changed tools/lint.py to lint the entire js and tests directorys and sub directories, currently it was pointing at tsconfig and would only lint files that were part of js/main.ts or node_modules/typescript/lib/lib.esnext.d.ts and their dependencies * Broke the typescript linting out into separate steps for the main typescript programing and tests. * Fixed linting issues in ts tests.
2018-10-02Guess extensions on extension not provided (#859)Kevin (Kun) "Kassimo" Qian
Fixes #857
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-10fbs_util.ts -> dispatch.tsRyan Dahl
And send() -> sendSync()
2018-09-09Better NotFound error handling in CodeFetchRyan Dahl
throwResolutionError was swallowing unrelated errors.
2018-09-06Cleanup public API of DenoCompilerKitson Kelly
2018-09-05Improve module resolution.Ryan Dahl
Windows can't handle ":" in path names, so we use a special directory format .deno/deps/localhost_PORT4545/ to represent hosts with non-default ports. Fixes #645.
2018-09-05Mark APIs at internal and include JSDoc in typesKitson Kelly
2018-09-01Bundle most types into globals.d.ts (#642)Kitson Kelly
2018-08-30Support https imports.Ryan Dahl
Adds hyper-rustls to the build. Use ring for sha1 instead of "ssh1" crate. Fixes #528.
2018-08-28Two-pass module evaluation.Kitson Kelly
Plus changes to tests to accomodate.
2018-08-28Add duplicate import testKitson Kelly
2018-08-23Improve DenoCompiler.makeDefine and localRequireKitson Kelly
2018-08-23First pass at HTTP importsRyan Dahl
Implement --reload Integrate hyper errors into DenoError 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-21Expose deno.exit() and add test.Ryan Dahl
2018-08-20First pass at fetch()Ryan Dahl
With help from Thomas Ghysels <info@thomasg.be>
2018-08-17chore: format files in tests/Yoshiya Hinosawa
2018-08-11Add async tests from prototypeRyan Dahl
2018-08-11Use unit_tests for readFileSync testing.Ryan Dahl