diff options
author | Mihai Bazon <mihai.bazon@gmail.com> | 2015-10-12 10:27:00 +0300 |
---|---|---|
committer | Mihai Bazon <mihai.bazon@gmail.com> | 2015-10-12 10:27:00 +0300 |
commit | 1940fb682c7f29d3d82913d0b58d542d034c2556 (patch) | |
tree | b5a34a05108a653c5803eea9ec63f49a5b37c5ca /test/run-tests.js | |
parent | 17eef5a3c26bfa87879e270b1fa4743646bae559 (diff) | |
download | tracifyjs-1940fb682c7f29d3d82913d0b58d542d034c2556.tar.gz tracifyjs-1940fb682c7f29d3d82913d0b58d542d034c2556.zip |
Fix tests
Diffstat (limited to 'test/run-tests.js')
-rwxr-xr-x | test/run-tests.js | 2 |
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(); } |