From eb259ee1546ebce9ce7a446b345899920f271b73 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 29 May 2018 04:56:00 -0400 Subject: [PATCH] Rename deno_testing to testing --- {deno_testing => testing}/testing.ts | 0 {deno_testing => testing}/util.ts | 0 {deno_testing => testing}/util_test.ts | 0 tests.ts | 2 +- 4 files changed, 1 insertion(+), 1 deletion(-) rename {deno_testing => testing}/testing.ts (100%) rename {deno_testing => testing}/util.ts (100%) rename {deno_testing => testing}/util_test.ts (100%) diff --git a/deno_testing/testing.ts b/testing/testing.ts similarity index 100% rename from deno_testing/testing.ts rename to testing/testing.ts diff --git a/deno_testing/util.ts b/testing/util.ts similarity index 100% rename from deno_testing/util.ts rename to testing/util.ts diff --git a/deno_testing/util_test.ts b/testing/util_test.ts similarity index 100% rename from deno_testing/util_test.ts rename to testing/util_test.ts diff --git a/tests.ts b/tests.ts index 5230c8ce57..45991228b6 100644 --- a/tests.ts +++ b/tests.ts @@ -6,7 +6,7 @@ // There must also be a static file http server running on localhost:4545 // serving the deno project directory. Try this: // http-server -p 4545 --cors . -import { test, assert, assertEqual } from "./deno_testing/testing.ts"; +import { test, assert, assertEqual } from "./testing/testing.ts"; import { readFileSync, writeFileSync } from "deno"; test(async function tests_test() {