diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-03-28 16:05:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-28 16:05:41 -0400 |
commit | c25e262b04c15d4de7107cc131de467882e7dcec (patch) | |
tree | a5e2fd2ba73f9f8881d0ea9166c36958747b6f49 /tests | |
parent | 51abcd614731bdb47a79f9f0c0fed81ddb7a474a (diff) |
Merge the --recompile and --reload flags (#2003)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/023_no_ext_with_mime.test | 2 | ||||
-rw-r--r-- | tests/024_import_no_ext_with_mime.test | 2 | ||||
-rw-r--r-- | tests/025_reload_js_type_error.js | 2 | ||||
-rw-r--r-- | tests/025_reload_js_type_error.test | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/023_no_ext_with_mime.test b/tests/023_no_ext_with_mime.test index 4a830aab7..5943f6526 100644 --- a/tests/023_no_ext_with_mime.test +++ b/tests/023_no_ext_with_mime.test @@ -1,2 +1,2 @@ -args: tests/023_no_ext_with_mime --reload --recompile +args: tests/023_no_ext_with_mime --reload output: tests/023_no_ext_with_mime.out diff --git a/tests/024_import_no_ext_with_mime.test b/tests/024_import_no_ext_with_mime.test index 03bb6df93..2ffe4810f 100644 --- a/tests/024_import_no_ext_with_mime.test +++ b/tests/024_import_no_ext_with_mime.test @@ -1,2 +1,2 @@ -args: tests/024_import_no_ext_with_mime.ts --reload --recompile +args: tests/024_import_no_ext_with_mime.ts --reload output: tests/024_import_no_ext_with_mime.ts.out diff --git a/tests/025_reload_js_type_error.js b/tests/025_reload_js_type_error.js index e19275daa..8d6e4b415 100644 --- a/tests/025_reload_js_type_error.js +++ b/tests/025_reload_js_type_error.js @@ -1,4 +1,4 @@ -// There was a bug where if this was executed with --recompile it would throw a +// There was a bug where if this was executed with --reload it would throw a // type error. window.test = null; test = console; diff --git a/tests/025_reload_js_type_error.test b/tests/025_reload_js_type_error.test index dba89cea8..de8c6e51d 100644 --- a/tests/025_reload_js_type_error.test +++ b/tests/025_reload_js_type_error.test @@ -1,2 +1,2 @@ -args: tests/025_reload_js_type_error.js --reload --recompile +args: tests/025_reload_js_type_error.js --reload output: tests/025_reload_js_type_error.js.out |