summaryrefslogtreecommitdiff
path: root/cli/tests/tsc
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2021-08-11 10:20:47 -0400
committerGitHub <noreply@github.com>2021-08-11 10:20:47 -0400
commit15a763152f9d392cb80692262f8de5ef8ae15495 (patch)
treefcd1a59777f95920bf3502519983d6cc0d882a9a /cli/tests/tsc
parenta0285e2eb88f6254f6494b0ecd1878db3a3b2a58 (diff)
chore: move test files to testdata directory (#11601)
Diffstat (limited to 'cli/tests/tsc')
-rw-r--r--cli/tests/tsc/a.js2
-rw-r--r--cli/tests/tsc/d.ts3
-rw-r--r--cli/tests/tsc/node_modules/b.js2
-rw-r--r--cli/tests/tsc/node_modules/c.js1
-rw-r--r--cli/tests/tsc/test.js4
5 files changed, 0 insertions, 12 deletions
diff --git a/cli/tests/tsc/a.js b/cli/tests/tsc/a.js
deleted file mode 100644
index 5a7b3ff93..000000000
--- a/cli/tests/tsc/a.js
+++ /dev/null
@@ -1,2 +0,0 @@
-import { v4 } from "./d.ts";
-export function a() {}
diff --git a/cli/tests/tsc/d.ts b/cli/tests/tsc/d.ts
deleted file mode 100644
index 3c74b8c83..000000000
--- a/cli/tests/tsc/d.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-export function v4() {
- return "hello";
-}
diff --git a/cli/tests/tsc/node_modules/b.js b/cli/tests/tsc/node_modules/b.js
deleted file mode 100644
index 191660935..000000000
--- a/cli/tests/tsc/node_modules/b.js
+++ /dev/null
@@ -1,2 +0,0 @@
-import c from "./c.js";
-export { c };
diff --git a/cli/tests/tsc/node_modules/c.js b/cli/tests/tsc/node_modules/c.js
deleted file mode 100644
index cff71c44a..000000000
--- a/cli/tests/tsc/node_modules/c.js
+++ /dev/null
@@ -1 +0,0 @@
-export default function c() {}
diff --git a/cli/tests/tsc/test.js b/cli/tests/tsc/test.js
deleted file mode 100644
index b7f46b351..000000000
--- a/cli/tests/tsc/test.js
+++ /dev/null
@@ -1,4 +0,0 @@
-import { a } from "./a.js";
-import { c } from "./node_modules/b.js";
-
-console.log("hello");