From 1464b756a4ef091ef97d1bf7340188ab5fe5492a Mon Sep 17 00:00:00 2001 From: David Sherret Date: Mon, 19 Sep 2022 09:32:21 -0500 Subject: refactor: move out test files from root testdata directory into sub directories (#15949) --- cli/tests/testdata/runtime/esm_imports_a.js | 3 +++ cli/tests/testdata/runtime/esm_imports_b.js | 4 ++++ 2 files changed, 7 insertions(+) create mode 100644 cli/tests/testdata/runtime/esm_imports_a.js create mode 100644 cli/tests/testdata/runtime/esm_imports_b.js (limited to 'cli/tests/testdata/runtime') diff --git a/cli/tests/testdata/runtime/esm_imports_a.js b/cli/tests/testdata/runtime/esm_imports_a.js new file mode 100644 index 000000000..673cd9aa3 --- /dev/null +++ b/cli/tests/testdata/runtime/esm_imports_a.js @@ -0,0 +1,3 @@ +import { retb } from "./esm_imports_b.js"; + +if (retb() != "b") throw Error(); diff --git a/cli/tests/testdata/runtime/esm_imports_b.js b/cli/tests/testdata/runtime/esm_imports_b.js new file mode 100644 index 000000000..840121368 --- /dev/null +++ b/cli/tests/testdata/runtime/esm_imports_b.js @@ -0,0 +1,4 @@ +// deno-lint-ignore-file +export function retb() { + return "b"; +} -- cgit v1.2.3