diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/025_reload_js_type_error.js | 5 | ||||
-rw-r--r-- | tests/025_reload_js_type_error.js.out | 1 | ||||
-rw-r--r-- | tests/025_reload_js_type_error.test | 2 |
3 files changed, 8 insertions, 0 deletions
diff --git a/tests/025_reload_js_type_error.js b/tests/025_reload_js_type_error.js new file mode 100644 index 000000000..e19275daa --- /dev/null +++ b/tests/025_reload_js_type_error.js @@ -0,0 +1,5 @@ +// There was a bug where if this was executed with --recompile it would throw a +// type error. +window.test = null; +test = console; +test.log("hello"); diff --git a/tests/025_reload_js_type_error.js.out b/tests/025_reload_js_type_error.js.out new file mode 100644 index 000000000..ce0136250 --- /dev/null +++ b/tests/025_reload_js_type_error.js.out @@ -0,0 +1 @@ +hello diff --git a/tests/025_reload_js_type_error.test b/tests/025_reload_js_type_error.test new file mode 100644 index 000000000..dba89cea8 --- /dev/null +++ b/tests/025_reload_js_type_error.test @@ -0,0 +1,2 @@ +args: tests/025_reload_js_type_error.js --reload --recompile +output: tests/025_reload_js_type_error.js.out |