summaryrefslogtreecommitdiff
path: root/cli/tests/type_definitions
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/type_definitions
parenta0285e2eb88f6254f6494b0ecd1878db3a3b2a58 (diff)
chore: move test files to testdata directory (#11601)
Diffstat (limited to 'cli/tests/type_definitions')
-rw-r--r--cli/tests/type_definitions/bar.d.ts7
-rw-r--r--cli/tests/type_definitions/bar.js5
-rw-r--r--cli/tests/type_definitions/fizz.d.ts2
-rw-r--r--cli/tests/type_definitions/fizz.js1
-rw-r--r--cli/tests/type_definitions/foo.d.ts2
-rw-r--r--cli/tests/type_definitions/foo.js1
-rw-r--r--cli/tests/type_definitions/qat.ts1
7 files changed, 0 insertions, 19 deletions
diff --git a/cli/tests/type_definitions/bar.d.ts b/cli/tests/type_definitions/bar.d.ts
deleted file mode 100644
index d43335dbb..000000000
--- a/cli/tests/type_definitions/bar.d.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-/// <reference types="baz" />
-
-declare namespace bar {
- export class Bar {
- baz: string;
- }
-}
diff --git a/cli/tests/type_definitions/bar.js b/cli/tests/type_definitions/bar.js
deleted file mode 100644
index e9c2e5193..000000000
--- a/cli/tests/type_definitions/bar.js
+++ /dev/null
@@ -1,5 +0,0 @@
-export class Bar {
- constructor() {
- this.baz = "baz";
- }
-}
diff --git a/cli/tests/type_definitions/fizz.d.ts b/cli/tests/type_definitions/fizz.d.ts
deleted file mode 100644
index 34eb41b96..000000000
--- a/cli/tests/type_definitions/fizz.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-/** A global value. */
-declare const fizz: string;
diff --git a/cli/tests/type_definitions/fizz.js b/cli/tests/type_definitions/fizz.js
deleted file mode 100644
index 852162c94..000000000
--- a/cli/tests/type_definitions/fizz.js
+++ /dev/null
@@ -1 +0,0 @@
-globalThis.fizz = "fizz";
diff --git a/cli/tests/type_definitions/foo.d.ts b/cli/tests/type_definitions/foo.d.ts
deleted file mode 100644
index ce39201e1..000000000
--- a/cli/tests/type_definitions/foo.d.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-/** An exported value. */
-export const foo: string;
diff --git a/cli/tests/type_definitions/foo.js b/cli/tests/type_definitions/foo.js
deleted file mode 100644
index 61d366eb2..000000000
--- a/cli/tests/type_definitions/foo.js
+++ /dev/null
@@ -1 +0,0 @@
-export const foo = "foo";
diff --git a/cli/tests/type_definitions/qat.ts b/cli/tests/type_definitions/qat.ts
deleted file mode 100644
index 6196c9d38..000000000
--- a/cli/tests/type_definitions/qat.ts
+++ /dev/null
@@ -1 +0,0 @@
-export const qat = "qat";