diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2022-02-01 09:33:57 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-01 09:33:57 +1100 |
commit | 7d356250e8bbe4e37e3651b328fda76178489588 (patch) | |
tree | 2034053509e324fef72ead3e13e52ec66a06e59d /cli/tests | |
parent | 5490cfed2000a063ef0baec500ab7d539203067c (diff) |
refactor: integrate deno_graph breaking changes (#13495)
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/testdata/055_info_file_json.out | 9 | ||||
-rw-r--r-- | cli/tests/testdata/076_info_json_deps_order.out | 11 |
2 files changed, 9 insertions, 11 deletions
diff --git a/cli/tests/testdata/055_info_file_json.out b/cli/tests/testdata/055_info_file_json.out index a85bc83c4..2dc10a0c2 100644 --- a/cli/tests/testdata/055_info_file_json.out +++ b/cli/tests/testdata/055_info_file_json.out @@ -22,10 +22,10 @@ } } ], + "kind": "esm", "local": "[WILDCARD]005_more_imports.ts", [WILDCARD] "mediaType": "TypeScript", - [WILDCARD] "specifier": "file://[WILDCARD]/005_more_imports.ts" }, { @@ -47,18 +47,17 @@ } } ], + "kind": "esm", "local": "[WILDCARD]mod1.ts", [WILDCARD] "mediaType": "TypeScript", - [WILDCARD] "specifier": "file://[WILDCARD]/subdir/mod1.ts" }, { - "dependencies": [], + "kind": "esm", "local": "[WILDCARD]print_hello.ts", [WILDCARD] "mediaType": "TypeScript", - [WILDCARD] "specifier": "file://[WILDCARD]/subdir/print_hello.ts" }, { @@ -80,10 +79,10 @@ } } ], + "kind": "esm", "local": "[WILDCARD]mod2.ts", [WILDCARD] "mediaType": "TypeScript", - [WILDCARD] "specifier": "file://[WILDCARD]/subdir/subdir2/mod2.ts" } ], diff --git a/cli/tests/testdata/076_info_json_deps_order.out b/cli/tests/testdata/076_info_json_deps_order.out index 69727e6e8..db890ef02 100644 --- a/cli/tests/testdata/076_info_json_deps_order.out +++ b/cli/tests/testdata/076_info_json_deps_order.out @@ -22,10 +22,10 @@ } } ], + "kind": "esm", "local": "[WILDCARD]076_info_json_deps_order.ts", [WILDCARD] "mediaType": "TypeScript", - [WILDCARD] "specifier": "file://[WILDCARD]/076_info_json_deps_order.ts" }, { @@ -63,10 +63,10 @@ } } ], + "kind": "esm", "local": "[WILDCARD]A.ts", [WILDCARD] "mediaType": "TypeScript", - [WILDCARD] "specifier": "file://[WILDCARD]/recursive_imports/A.ts" }, { @@ -104,10 +104,10 @@ } } ], + "kind": "esm", "local": "[WILDCARD]B.ts", [WILDCARD] "mediaType": "TypeScript", - [WILDCARD] "specifier": "file://[WILDCARD]/recursive_imports/B.ts" }, { @@ -145,18 +145,17 @@ } } ], + "kind": "esm", "local": "[WILDCARD]C.ts", [WILDCARD] "mediaType": "TypeScript", - [WILDCARD] "specifier": "file://[WILDCARD]/recursive_imports/C.ts" }, { - "dependencies": [], + "kind": "esm", "local": "[WILDCARD]common.ts", [WILDCARD] "mediaType": "TypeScript", - [WILDCARD] "specifier": "file://[WILDCARD]/recursive_imports/common.ts" } ], |