From 1d1a8426ddaaba96ecf69a1d4cb213a8810d1d44 Mon Sep 17 00:00:00 2001 From: kzc Date: Wed, 2 Aug 2017 00:38:02 -0400 Subject: [PATCH] increase mocha unicode surrogate test timeout --- test/mocha/unicode.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/mocha/unicode.js b/test/mocha/unicode.js index a89b5031..2ad48ac2 100644 --- a/test/mocha/unicode.js +++ b/test/mocha/unicode.js @@ -146,6 +146,7 @@ describe("Unicode", function() { if (semver.satisfies(process.version, ">=4")) { it("Should not unescape unpaired surrogates", function() { + this.timeout(5000); var code = []; for (var i = 0; i <= 0x20001; i++) { code.push("\\u{" + i.toString(16) + "}");