diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-08-22 17:17:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-22 17:17:26 -0400 |
commit | e7cab715749e4c5000c24ffeade1ef915d15a68d (patch) | |
tree | 3ddb749342a415112f3bf4b1f3aa7156dca9c8af /js/unit_tests.ts | |
parent | c5bb412933d750c80c93eaa4840eb3bbac33bc2c (diff) |
runtime.ts refactor into compiler.ts (#564)
Adds compiler_test.ts
Diffstat (limited to 'js/unit_tests.ts')
-rw-r--r-- | js/unit_tests.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/unit_tests.ts b/js/unit_tests.ts index ef65519f6..f203444fa 100644 --- a/js/unit_tests.ts +++ b/js/unit_tests.ts @@ -6,6 +6,8 @@ import { test, assert, assertEqual } from "./testing/testing.ts"; import { readFileSync } from "deno"; +import "./compiler_test.ts"; + test(async function tests_test() { assert(true); }); |