diff options
Diffstat (limited to 'js/unit_tests.ts')
-rw-r--r-- | js/unit_tests.ts | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/js/unit_tests.ts b/js/unit_tests.ts index 6ac071d3e..b24a156d5 100644 --- a/js/unit_tests.ts +++ b/js/unit_tests.ts @@ -2,16 +2,18 @@ // This test is executed as part of tools/test.py // But it can also be run manually: ./target/debug/deno js/unit_tests.ts -import "../website/app_test.js"; + import "./blob_test.ts"; import "./buffer_test.ts"; import "./chmod_test.ts"; import "./compiler_test.ts"; import "./console_test.ts"; import "./copy_file_test.ts"; -import "./dir_test"; +import "./dir_test.ts"; import "./fetch_test.ts"; -import "./file_test.ts"; +// TODO The global "File" has been temporarily disabled. See the note in +// js/globals.ts +// import "./file_test.ts"; import "./files_test.ts"; import "./form_data_test.ts"; import "./headers_test.ts"; @@ -37,3 +39,5 @@ import "./truncate_test.ts"; import "./url_test.ts"; import "./url_search_params_test.ts"; import "./write_file_test.ts"; + +// TODO import "../website/app_test.js"; |