Moved test input files to test/input.

This commit is contained in:
Lucas Wiener
2016-07-28 09:30:12 +02:00
committed by Richard van Velzen
parent 85a09fc3b6
commit 38756b1f26
3 changed files with 2 additions and 2 deletions

View File

@@ -62,9 +62,9 @@ describe("minify", function() {
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', {
var result = Uglify.minify('./test/input/issue-1236/simple.js', {
outSourceMap: "simple.js.min.map",
inSourceMap: "./test/mocha/input/issue-1236/simple.js.map",
inSourceMap: "./test/input/issue-1236/simple.js.map",
sourceMapIncludeSources: true
});