diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-12-28 05:32:07 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-28 13:32:07 +0800 |
commit | c00efe56f4fb07d27eb1d47915288b027b3ef692 (patch) | |
tree | 6649bb0c894d8d188c2d4706e135edec82cdea92 /test/ufuzz | |
parent | 28bcdbd7df403a4dca8bd2b7f327b65c8491235d (diff) | |
download | tracifyjs-c00efe56f4fb07d27eb1d47915288b027b3ef692.tar.gz tracifyjs-c00efe56f4fb07d27eb1d47915288b027b3ef692.zip |
workaround asynchronous tty bugs on Node.js (#4473)
Diffstat (limited to 'test/ufuzz')
-rw-r--r-- | test/ufuzz/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ufuzz/index.js b/test/ufuzz/index.js index 2eac44f0..e5bf0083 100644 --- a/test/ufuzz/index.js +++ b/test/ufuzz/index.js @@ -5,7 +5,7 @@ // bin/uglifyjs s.js -c && bin/uglifyjs s.js -c passes=3 && bin/uglifyjs s.js -c passes=3 -m // cat s.js | node && node s.js && bin/uglifyjs s.js -c | node && bin/uglifyjs s.js -c passes=3 | node && bin/uglifyjs s.js -c passes=3 -m | node -require("../../tools/exit"); +require("../../tools/tty"); var UglifyJS = require("../.."); var randomBytes = require("crypto").randomBytes; |