diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-02-25 19:32:43 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-25 03:32:43 -0500 |
commit | 805992b14a65a6dbfb857dea6d9b657477de043d (patch) | |
tree | 9fe4f36c72ac8beaf45a44170eba98966a086a21 /cli/tests/integration_tests.rs | |
parent | 22f88b9f37b7e233fd4f15b73d5a2096224e56dc (diff) |
Fix issues with JavaScript importing JavaScript. (#4120)
Fixes #3852
Fixes #4117
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 1767be7c2..ccc571331 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -1160,6 +1160,11 @@ itest!(cafile_info { http_server: true, }); +itest!(fix_js_import_js { + args: "run --reload fix_js_import_js.ts", + output: "fix_js_import_js.ts.out", +}); + itest!(fix_js_imports { args: "run --reload fix_js_imports.ts", output: "fix_js_imports.ts.out", |