1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-22 15:10:44 -05:00
denoland-deno/js/unit_tests.ts

16 lines
521 B
TypeScript
Raw Normal View History

// 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
import "./compiler_test.ts";
import "./console_test.ts";
2018-08-30 13:49:24 -04:00
import "./fetch_test.ts";
import "./os_test.ts";
import "./read_file_test.ts";
import "./write_file_test.ts";
2018-09-10 14:18:36 +04:30
import "./mkdir_test.ts";
2018-09-13 11:04:45 +09:00
import "./make_temp_dir_test.ts";
2018-09-12 00:08:53 +04:30
import "./stat_test.ts";
2018-09-12 08:44:58 -07:00
import "./rename_test.ts";
2018-09-14 17:15:50 +04:30
import "./blob_test.ts";
import "./timers_test.ts";