Skip to content

Commit

Permalink
workaround sporadic slowdown in GitHub Actions (#5201)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlamsl authored Nov 28, 2021
1 parent 3f8f0e2 commit 2547542
Showing 1 changed file with 8 additions and 15 deletions.
23 changes: 8 additions & 15 deletions test/mocha/spidermonkey.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,27 @@ var UglifyJS = require("../..");

describe("spidermonkey export/import sanity test", function() {
it("Should produce a functional build when using --self with spidermonkey", function(done) {
this.timeout(60000);

this.timeout(120000);
var uglifyjs = '"' + process.argv[0] + '" bin/uglifyjs';
var command = uglifyjs + " --self -cm --wrap SpiderUglify -o spidermonkey | " +
uglifyjs + " -p spidermonkey -cm";

exec(command, {
maxBuffer: 1048576
}, function(err, stdout) {
var command = [
uglifyjs + " --self -cm --wrap SpiderUglify -o spidermonkey",
uglifyjs + " -p spidermonkey -cm",
].join(" | ");
exec(command, { maxBuffer: 1048576 }, function(err, stdout) {
if (err) throw err;

eval(stdout);
assert.strictEqual(typeof SpiderUglify, "object");
var result = SpiderUglify.minify("foo([true,,2+3]);");
assert.strictEqual(result.error, undefined);
assert.strictEqual(result.code, "foo([!0,,5]);");

done();
});
});

it("Should not add unnecessary escape slashes to regexps", function() {
it("Should not add unnecessary escape slashes to RegExp", function() {
var input = "/[\\\\/]/;";
var ast = UglifyJS.parse(input).to_mozilla_ast();
assert.equal(
UglifyJS.AST_Node.from_mozilla_ast(ast).print_to_string(),
input
);
assert.strictEqual(UglifyJS.AST_Node.from_mozilla_ast(ast).print_to_string(), input);
});

it("Should judge between directives and strings correctly on import", function() {
Expand Down

0 comments on commit 2547542

Please sign in to comment.