diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-10-04 14:49:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-04 14:49:32 -0400 |
commit | ddcad56ee9bc762171fd88585fd7ab3e3da19e1e (patch) | |
tree | d0c308fc91514a3327266a57a252c4e46122ac6b /js/unit_tests.ts | |
parent | eecb4fea26aa3d1cddef1bb44ed3500d2b4dd477 (diff) |
Move deno_std to a more convenient location. (#3057)
js/deps/https/deno.land/std -> js/std
Diffstat (limited to 'js/unit_tests.ts')
-rw-r--r-- | js/unit_tests.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/unit_tests.ts b/js/unit_tests.ts index 2da67c40e..a83b57c15 100644 --- a/js/unit_tests.ts +++ b/js/unit_tests.ts @@ -55,7 +55,7 @@ import "./version_test.ts"; import "../website/app_test.ts"; -import { runIfMain } from "./deps/https/deno.land/std/testing/mod.ts"; +import { runIfMain } from "../std/testing/mod.ts"; async function main(): Promise<void> { // Testing entire test suite serially |