From: Anthony Van de Gejuchte Date: Tue, 12 Jan 2016 23:30:32 +0000 (+0100) Subject: Add test case for line continuation X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=88b77ddaa9d6b3d55e537dc21030ac58ddfcb86e;p=UglifyJS.git Add test case for line continuation --- diff --git a/test/mocha/string-literal.js b/test/mocha/string-literal.js index 64933632..84aaad7e 100644 --- a/test/mocha/string-literal.js +++ b/test/mocha/string-literal.js @@ -14,16 +14,21 @@ describe("String literals", function() { var test = function(input) { return function() { var ast = UglifyJS.parse(input); - } + }; }; var error = function(e) { return e instanceof UglifyJS.JS_Parse_Error && - e.message === "Unterminated string constant" + e.message === "Unterminated string constant"; }; for (var input in inputs) { assert.throws(test(inputs[input]), error); } }); + + it("Should not throw syntax error if a string has a line continuation", function() { + var output = UglifyJS.parse('var a = "a\\\nb";').print_to_string(); + assert.equal(output, 'var a="ab";'); + }); }); \ No newline at end of file