aboutsummaryrefslogtreecommitdiff
path: root/test/run-tests.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/run-tests.js')
-rwxr-xr-xtest/run-tests.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run-tests.js b/test/run-tests.js
index fc7476f9..818a65e4 100755
--- a/test/run-tests.js
+++ b/test/run-tests.js
@@ -190,7 +190,7 @@ function parse_test(file) {
function make_code(ast, beautify) {
if (arguments.length == 1) beautify = true;
- var stream = U.OutputStream({ beautify: beautify });
+ var stream = U.OutputStream({ beautify: beautify, inline_script: true });
ast.print(stream);
return stream.get();
}