From 88b77ddaa9d6b3d55e537dc21030ac58ddfcb86e Mon Sep 17 00:00:00 2001 From: Anthony Van de Gejuchte Date: Wed, 13 Jan 2016 00:30:32 +0100 Subject: [PATCH] Add test case for line continuation --- test/mocha/string-literal.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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 -- 2.34.1