diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2017-04-02 02:10:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-02 02:10:50 +0800 |
commit | 28ecea50a6ae0cc8c5bddca7764e5fd198a7730e (patch) | |
tree | 0e157328ec3e1f8cb5ec059c169a241bb62dee4a /test/ufuzz.json | |
parent | 9a311705f53648388b8e6bd94c73f39aa15effeb (diff) | |
download | tracifyjs-28ecea50a6ae0cc8c5bddca7764e5fd198a7730e.tar.gz tracifyjs-28ecea50a6ae0cc8c5bddca7764e5fd198a7730e.zip |
upgrade fuzzer (#1754)
- configurable set of `minify()` options
- test and report suspects upon failure
- continue after failure if infinite iterations is specified
Diffstat (limited to 'test/ufuzz.json')
-rw-r--r-- | test/ufuzz.json | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/test/ufuzz.json b/test/ufuzz.json new file mode 100644 index 00000000..8db03d2d --- /dev/null +++ b/test/ufuzz.json @@ -0,0 +1,34 @@ +[ + { + "compress": { + "warnings": false + } + }, + { + "compress": { + "warnings": false + }, + "mangle": false + }, + { + "compress": false, + "mangle": true + }, + { + "compress": false, + "mangle": false, + "output": { + "beautify": true, + "bracketize": true + } + }, + { + "compress": { + "keep_fargs": false, + "passes": 3, + "pure_getters": true, + "unsafe": true, + "warnings": false + } + } +] |