Skip to content

Commit b7c9bd2

Browse files
Fleshed-out the mock script file to be more realistic
1 parent 435fafb commit b7c9bd2

1 file changed

Lines changed: 10 additions & 3 deletions

File tree

test/fixtures/files/script2.js

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
"use strict";
1+
/* eslint strict:off */
2+
(function () {
3+
"use strict";
24

3-
// This file should not get updated because version 3.2.1
4-
// and v8.9.10 don't match the old version number
5+
// This file should not get updated because
6+
// version 3.2.1 and v8.9.10 don't match the old version number
7+
let version = "3.2.1";
8+
let someNumbers = "8.9.10";
9+
return version + someNumbers;
10+
11+
}());

0 commit comments

Comments
 (0)