2018-07-23 14:46:30 -04:00
|
|
|
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
2018-08-30 13:49:24 -04:00
|
|
|
// This test is executed as part of tools/test.py
|
|
|
|
// But it can also be run manually: ./out/debug/deno js/unit_tests.ts
|
2018-08-22 17:17:26 -04:00
|
|
|
import "./compiler_test.ts";
|
2018-08-27 14:59:38 -04:00
|
|
|
import "./console_test.ts";
|
2018-08-30 13:49:24 -04:00
|
|
|
import "./fetch_test.ts";
|
2018-09-09 20:25:43 -04:00
|
|
|
import "./os_test.ts";
|
|
|
|
import "./read_file_test.ts";
|
2018-09-11 12:00:57 -04:00
|
|
|
import "./write_file_test.ts";
|
2018-09-10 05:48:36 -04:00
|
|
|
import "./mkdir_test.ts";
|
2018-09-12 22:04:45 -04:00
|
|
|
import "./make_temp_dir_test.ts";
|
2018-09-11 15:38:53 -04:00
|
|
|
import "./stat_test.ts";
|
2018-09-12 11:44:58 -04:00
|
|
|
import "./rename_test.ts";
|
2018-09-14 08:45:50 -04:00
|
|
|
import "./blob_test.ts";
|
2018-09-16 16:35:16 -04:00
|
|
|
import "./timers_test.ts";
|