diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2021-08-11 10:20:47 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-11 10:20:47 -0400 |
| commit | 15a763152f9d392cb80692262f8de5ef8ae15495 (patch) | |
| tree | fcd1a59777f95920bf3502519983d6cc0d882a9a /cli/tests/recursive_imports | |
| parent | a0285e2eb88f6254f6494b0ecd1878db3a3b2a58 (diff) | |
chore: move test files to testdata directory (#11601)
Diffstat (limited to 'cli/tests/recursive_imports')
| -rw-r--r-- | cli/tests/recursive_imports/A.ts | 7 | ||||
| -rw-r--r-- | cli/tests/recursive_imports/B.ts | 7 | ||||
| -rw-r--r-- | cli/tests/recursive_imports/C.ts | 8 | ||||
| -rw-r--r-- | cli/tests/recursive_imports/common.ts | 2 |
4 files changed, 0 insertions, 24 deletions
diff --git a/cli/tests/recursive_imports/A.ts b/cli/tests/recursive_imports/A.ts deleted file mode 100644 index 43ecdbe5e..000000000 --- a/cli/tests/recursive_imports/A.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { B } from "./B.ts"; -import { thing } from "./common.ts"; - -export function A() { - thing(); - B(); -} diff --git a/cli/tests/recursive_imports/B.ts b/cli/tests/recursive_imports/B.ts deleted file mode 100644 index 9fff0fdc9..000000000 --- a/cli/tests/recursive_imports/B.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { C } from "./C.ts"; -import { thing } from "./common.ts"; - -export function B() { - thing(); - C(); -} diff --git a/cli/tests/recursive_imports/C.ts b/cli/tests/recursive_imports/C.ts deleted file mode 100644 index e47e77b41..000000000 --- a/cli/tests/recursive_imports/C.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { A } from "./A.ts"; -import { thing } from "./common.ts"; - -export function C() { - if (A != null) { - thing(); - } -} diff --git a/cli/tests/recursive_imports/common.ts b/cli/tests/recursive_imports/common.ts deleted file mode 100644 index 2b16a7bf1..000000000 --- a/cli/tests/recursive_imports/common.ts +++ /dev/null @@ -1,2 +0,0 @@ -export function thing() { -} |
