diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/015_import_no_ext.test | 2 | ||||
-rw-r--r-- | tests/015_import_no_ext.ts | 10 | ||||
-rw-r--r-- | tests/015_import_no_ext.ts.out | 5 | ||||
-rw-r--r-- | tests/fetch_deps.ts | 2 | ||||
-rw-r--r-- | tests/subdir/mod3.ts | 3 |
5 files changed, 1 insertions, 21 deletions
diff --git a/tests/015_import_no_ext.test b/tests/015_import_no_ext.test deleted file mode 100644 index 1d084704c..000000000 --- a/tests/015_import_no_ext.test +++ /dev/null @@ -1,2 +0,0 @@ -args: tests/015_import_no_ext.ts --reload -output: tests/015_import_no_ext.ts.out diff --git a/tests/015_import_no_ext.ts b/tests/015_import_no_ext.ts deleted file mode 100644 index 9bd2acd7e..000000000 --- a/tests/015_import_no_ext.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { isTSFile, printHello, phNoExt } from "./subdir/mod3"; -console.log(isTSFile); -console.log(printHello); -console.log(phNoExt); - -import { isMod4 } from "./subdir/mod4"; -console.log(isMod4); - -import { printHello as ph } from "http://localhost:4545/tests/subdir/mod2"; -console.log(ph); diff --git a/tests/015_import_no_ext.ts.out b/tests/015_import_no_ext.ts.out deleted file mode 100644 index 954e8636a..000000000 --- a/tests/015_import_no_ext.ts.out +++ /dev/null @@ -1,5 +0,0 @@ -true -[Function: printHello] -[Function: printHello] -true -[Function: printHello] diff --git a/tests/fetch_deps.ts b/tests/fetch_deps.ts index d2690e01c..76df15597 100644 --- a/tests/fetch_deps.ts +++ b/tests/fetch_deps.ts @@ -1,5 +1,5 @@ // Run ./tools/http_server.py too in order for this test to run. -import { assert } from "../js/testing/util.ts"; +import { assert } from "../js/testing/testing.ts"; // TODO Top level await https://github.com/denoland/deno/issues/471 async function main() { diff --git a/tests/subdir/mod3.ts b/tests/subdir/mod3.ts deleted file mode 100644 index 4f10578bf..000000000 --- a/tests/subdir/mod3.ts +++ /dev/null @@ -1,3 +0,0 @@ -export const isTSFile = true; -export { printHello } from "./print_hello.ts"; -export { printHello as phNoExt } from "./print_hello"; |