From d0b6152f11800b0baac1ae68d2eef7bfcea13cb5 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 27 Mar 2019 16:10:31 -0400 Subject: Fix error when JS is executed with --recompile (#2007) test case from @afinch7 --- tests/025_reload_js_type_error.js | 5 +++++ tests/025_reload_js_type_error.js.out | 1 + tests/025_reload_js_type_error.test | 2 ++ 3 files changed, 8 insertions(+) create mode 100644 tests/025_reload_js_type_error.js create mode 100644 tests/025_reload_js_type_error.js.out create mode 100644 tests/025_reload_js_type_error.test (limited to 'tests') 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 -- cgit v1.2.3