diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-12-23 11:44:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-23 11:44:08 -0500 |
commit | 6cc998f28bb1cf119ca96bac385c7361bc1f7021 (patch) | |
tree | d5fb8f0da5c79fa14afc814ea85cf1c9134eb714 /js/console_test.ts | |
parent | bee55fcd20b4919f2d6b4817ce33d1a09e6bcadc (diff) |
Remove support for extensionless import (#1396)
Diffstat (limited to 'js/console_test.ts')
-rw-r--r-- | js/console_test.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/js/console_test.ts b/js/console_test.ts index b0fb9b5c4..e3349054b 100644 --- a/js/console_test.ts +++ b/js/console_test.ts @@ -1,9 +1,7 @@ // Copyright 2018 the Deno authors. All rights reserved. MIT license. +import { Console, libdeno, stringifyArgs, inspect } from "deno"; import { test, assert, assertEqual } from "./test_util.ts"; -import { stringifyArgs, inspect } from "./console.ts"; -import { Console } from "./console.ts"; -import { libdeno } from "./libdeno"; const console = new Console(libdeno.print); // tslint:disable-next-line:no-any |