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/bundle/check_local_by_default/no_errors.out | 6 ++++++ cli/tests/testdata/bundle/check_local_by_default/no_errors.ts | 3 +++ cli/tests/testdata/bundle/check_local_by_default/type_error.out | 4 ++++ cli/tests/testdata/bundle/check_local_by_default/type_error.ts | 6 ++++++ 4 files changed, 19 insertions(+) create mode 100644 cli/tests/testdata/bundle/check_local_by_default/no_errors.out create mode 100644 cli/tests/testdata/bundle/check_local_by_default/no_errors.ts create mode 100644 cli/tests/testdata/bundle/check_local_by_default/type_error.out create mode 100644 cli/tests/testdata/bundle/check_local_by_default/type_error.ts (limited to 'cli/tests/testdata/bundle/check_local_by_default') diff --git a/cli/tests/testdata/bundle/check_local_by_default/no_errors.out b/cli/tests/testdata/bundle/check_local_by_default/no_errors.out new file mode 100644 index 000000000..c4559d1fa --- /dev/null +++ b/cli/tests/testdata/bundle/check_local_by_default/no_errors.out @@ -0,0 +1,6 @@ +// deno-fmt-ignore-file +// deno-lint-ignore-file +// This code was bundled using `deno bundle` and it's not recommended to edit it manually + +console.log(12); + diff --git a/cli/tests/testdata/bundle/check_local_by_default/no_errors.ts b/cli/tests/testdata/bundle/check_local_by_default/no_errors.ts new file mode 100644 index 000000000..2ae8c2692 --- /dev/null +++ b/cli/tests/testdata/bundle/check_local_by_default/no_errors.ts @@ -0,0 +1,3 @@ +import * as a from "http://localhost:4545/subdir/type_error.ts"; + +console.log(a.a); diff --git a/cli/tests/testdata/bundle/check_local_by_default/type_error.out b/cli/tests/testdata/bundle/check_local_by_default/type_error.out new file mode 100644 index 000000000..6d53e9498 --- /dev/null +++ b/cli/tests/testdata/bundle/check_local_by_default/type_error.out @@ -0,0 +1,4 @@ +error: TS2322 [ERROR]: Type '12' is not assignable to type '"b"'. +const b: "b" = 12; + ^ + at [WILDCARD]bundle/check_local_by_default/type_error.ts:3:7 diff --git a/cli/tests/testdata/bundle/check_local_by_default/type_error.ts b/cli/tests/testdata/bundle/check_local_by_default/type_error.ts new file mode 100644 index 000000000..5177ff944 --- /dev/null +++ b/cli/tests/testdata/bundle/check_local_by_default/type_error.ts @@ -0,0 +1,6 @@ +import * as a from "http://localhost:4545/subdir/type_error.ts"; + +const b: "b" = 12; + +console.log(a.a); +console.log(b); -- cgit v1.2.3