fix keyword shorthand property output for ecma >= 6 (#2493)

fixes #2491
This commit is contained in:
kzc
2017-11-19 00:53:42 -05:00
committed by Alex Lam S.L
parent e826973b76
commit f25bd13be6
3 changed files with 41 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ function read(path) {
describe("bin/uglifyjs", function () {
var uglifyjscmd = '"' + process.argv[0] + '" bin/uglifyjs';
it("should produce a functional build when using --self", function (done) {
this.timeout(60000);
this.timeout(120000);
var command = uglifyjscmd + ' --self -mc ecma=';
command += semver.satisfies(process.version, ">=4") ? "6" : "5";