summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/025_reload_js_type_error.js5
-rw-r--r--tests/025_reload_js_type_error.js.out1
-rw-r--r--tests/025_reload_js_type_error.test2
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