diff options
author | Greg Altman <g.s.altman@gmail.com> | 2019-02-14 14:11:51 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-02-15 11:06:49 -0500 |
commit | 061a9353ba3d359ed62b494f9f63af78aed4498b (patch) | |
tree | 96a52d771406a93dc0d9c74b73142fd5c2b7b4e5 /tests | |
parent | 0412ab2308a220cf432b5debb7f4f706dfbc190d (diff) |
Module dep pretty printing in --info
Diffstat (limited to 'tests')
-rw-r--r-- | tests/022_info_flag.out | 14 | ||||
-rw-r--r-- | tests/022_info_flag.test | 2 |
2 files changed, 12 insertions, 4 deletions
diff --git a/tests/022_info_flag.out b/tests/022_info_flag.out index 163746f11..329e07b6d 100644 --- a/tests/022_info_flag.out +++ b/tests/022_info_flag.out @@ -1,6 +1,14 @@ -local: [WILDCARD]deps/http/127.0.0.1_PORT4545/tests/003_relative_import.ts +local: [WILDCARD]deps/http/127.0.0.1_PORT4545/tests/019_media_types.ts type: TypeScript compiled: [WILDCARD].js map: [WILDCARD].js.map -deps: http://127.0.0.1:4545/tests/003_relative_import.ts -| http://127.0.0.1:4545/tests/subdir/print_hello.ts +deps: +http://127.0.0.1:4545/tests/019_media_types.ts + ├── http://localhost:4545/tests/subdir/mt_text_typescript.t1.ts + ├── http://localhost:4545/tests/subdir/mt_video_vdn.t2.ts + ├── http://localhost:4545/tests/subdir/mt_video_mp2t.t3.ts + ├── http://localhost:4545/tests/subdir/mt_application_x_typescript.t4.ts + ├── http://localhost:4545/tests/subdir/mt_text_javascript.j1.js + ├── http://localhost:4545/tests/subdir/mt_application_ecmascript.j2.js + ├── http://localhost:4545/tests/subdir/mt_text_ecmascript.j3.js + └── http://localhost:4545/tests/subdir/mt_application_x_javascript.j4.js diff --git a/tests/022_info_flag.test b/tests/022_info_flag.test index e2132a85f..2de27bdfa 100644 --- a/tests/022_info_flag.test +++ b/tests/022_info_flag.test @@ -1,4 +1,4 @@ # The output assumes 003_relative_import.ts has already been run earlier # and its output is cached to $DENO_DIR. -args: --info http://127.0.0.1:4545/tests/003_relative_import.ts +args: --info http://127.0.0.1:4545/tests/019_media_types.ts output: tests/022_info_flag.out |