diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-05-09 02:58:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-09 09:58:03 +0800 |
commit | f74b7f74019e796c95c228dc6b0348f9db6e709f (patch) | |
tree | 59d8c1330b043f40aab0ff0c5f2ef7256055ac5f /test/jetstream.js | |
parent | b06fd8a9331c377dd3d95ddb78a52ea11c58f8df (diff) | |
download | tracifyjs-f74b7f74019e796c95c228dc6b0348f9db6e709f.tar.gz tracifyjs-f74b7f74019e796c95c228dc6b0348f9db6e709f.zip |
implement AST validation (#3863)
Diffstat (limited to 'test/jetstream.js')
-rw-r--r-- | test/jetstream.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/jetstream.js b/test/jetstream.js index 3ad9677f..23c49b05 100644 --- a/test/jetstream.js +++ b/test/jetstream.js @@ -14,9 +14,9 @@ if (typeof phantom == "undefined") { args.splice(debug, 1); debug = true; } - args.unshift("bin/uglifyjs"); if (!args.length) args.push("-mcb", "beautify=false,webkit"); - args.push("--timings"); + args.unshift("bin/uglifyjs"); + args.push("--validate", "--timings"); var child_process = require("child_process"); var fetch = require("./fetch"); var http = require("http"); |