[Pkg-javascript-commits] [uglifyjs] 13/49: Added test for #1236
Jonas Smedegaard
dr at jones.dk
Fri Dec 9 11:43:25 UTC 2016
This is an automated email from the git hooks/post-receive script.
js pushed a commit to branch master
in repository uglifyjs.
commit 85a09fc3b69cd4ea4b01151e235815b0796373f3
Author: Lucas Wiener <lucas at wiener.se>
Date: Wed Jul 27 16:02:33 2016 +0200
Added test for #1236
---
test/mocha/input/issue-1236/simple.js | 8 ++++++++
test/mocha/input/issue-1236/simple.js.map | 8 ++++++++
test/mocha/minify.js | 16 ++++++++++++++++
3 files changed, 32 insertions(+)
diff --git a/test/mocha/input/issue-1236/simple.js b/test/mocha/input/issue-1236/simple.js
new file mode 100644
index 0000000..8bdd7f2
--- /dev/null
+++ b/test/mocha/input/issue-1236/simple.js
@@ -0,0 +1,8 @@
+"use strict";
+
+var foo = function foo(x) {
+ return "foo " + x;
+};
+console.log(foo("bar"));
+
+//# sourceMappingURL=simple.js.map
diff --git a/test/mocha/input/issue-1236/simple.js.map b/test/mocha/input/issue-1236/simple.js.map
new file mode 100644
index 0000000..28989e0
--- /dev/null
+++ b/test/mocha/input/issue-1236/simple.js.map
@@ -0,0 +1,8 @@
+{
+ "version": 3,
+ "sources": ["index.js"],
+ "names": [],
+ "mappings": ";;AAAA,IAAI,MAAM,SAAN,GAAM;AAAA,SAAK,SAAS,CAAd;AAAA,CAAV;AACA,QAAQ,GAAR,CAAY,IAAI,KAAJ,CAAZ",
+ "file": "simple.js",
+ "sourcesContent": ["let foo = x => \"foo \" + x;\nconsole.log(foo(\"bar\"));"]
+}
diff --git a/test/mocha/minify.js b/test/mocha/minify.js
index 02d3155..b6e7a23 100644
--- a/test/mocha/minify.js
+++ b/test/mocha/minify.js
@@ -59,4 +59,20 @@ describe("minify", function() {
'a["foo"]="bar",a.a="red",x={"bar":10};');
});
});
+
+ describe("inSourceMap", function() {
+ it("Should read the given string filename correctly when sourceMapIncludeSources is enabled (#1236)", function() {
+ var result = Uglify.minify('./test/mocha/input/issue-1236/simple.js', {
+ outSourceMap: "simple.js.min.map",
+ inSourceMap: "./test/mocha/input/issue-1236/simple.js.map",
+ sourceMapIncludeSources: true
+ });
+
+ var map = JSON.parse(result.map);
+
+ assert.equal(map.sourcesContent.length, 1);
+ assert.equal(map.sourcesContent[0],
+ 'let foo = x => "foo " + x;\nconsole.log(foo("bar"));');
+ });
+ });
});
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/uglifyjs.git
More information about the Pkg-javascript-commits
mailing list