Skip to content

Commit bbe1da0

Browse files
committed
Update test files.
1 parent 3a718cf commit bbe1da0

28 files changed

+29
-28
lines changed

test/fixtures/expected/beautify.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
function longFunctionC(a,b){return 3+a+b}
1+
function longFunctionC(a,b){
2+
return longNameA+longNameB+a+b}
23
var longNameA=1,longNameB=2,result=longFunctionC(3,4);

test/fixtures/expected/compress.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/fixtures/expected/compress_explicit.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/fixtures/expected/compress_mangle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// banner without sourcemap
2-
function longFunctionC(a,b){return 3+a+b}var longNameA=1,longNameB=2,result=longFunctionC(3,4);
2+
function longFunctionC(a,b){return longNameA+longNameB+a+b}var longNameA=1,longNameB=2,result=longFunctionC(3,4);

test/fixtures/expected/compress_mangle_beautify.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
function longFunctionC(a, b) {
2-
return 3 + a + b;
2+
return longNameA + longNameB + a + b;
33
}
44

55
var longNameA = 1, longNameB = 2, result = longFunctionC(3, 4);

test/fixtures/expected/compress_mangle_except.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/fixtures/expected/deep/directory/location/source_map.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/fixtures/expected/exportAll.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/fixtures/expected/mangle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)