@@ -11,6 +11,8 @@ var outputBase = path.join(__dirname, '..', outputRelative);
11
11
// Used for file tests
12
12
var inputPath = path . join ( inputBase , './test.txt' ) ;
13
13
var outputPath = path . join ( outputBase , './test.txt' ) ;
14
+ var inputPathLarge = path . join ( inputBase , './test-large.txt' ) ;
15
+ var outputPathLarge = path . join ( outputBase , './test-large.txt' ) ;
14
16
// Used for directory tests
15
17
var inputDirpath = path . join ( inputBase , './foo' ) ;
16
18
var outputDirpath = path . join ( outputBase , './foo' ) ;
@@ -37,6 +39,12 @@ var symlinkNestedFirst = path.join(outputBase, './test-multi-layer-symlink');
37
39
var symlinkNestedSecond = path . join ( outputBase , './foo/baz-link.txt' ) ;
38
40
// Used for contents of files
39
41
var contents = 'Hello World!' ;
42
+ var contentsLarge = '' ;
43
+ var idx = 0 ;
44
+ while ( idx ++ < 2000 ) {
45
+ contentsLarge += '[' + idx + '] Hello World!\n' ;
46
+ }
47
+
40
48
41
49
module . exports = {
42
50
inputRelative : inputRelative ,
@@ -45,6 +53,8 @@ module.exports = {
45
53
outputBase : outputBase ,
46
54
inputPath : inputPath ,
47
55
outputPath : outputPath ,
56
+ inputPathLarge : inputPathLarge ,
57
+ outputPathLarge : outputPathLarge ,
48
58
inputDirpath : inputDirpath ,
49
59
outputDirpath : outputDirpath ,
50
60
inputNestedPath : inputNestedPath ,
@@ -63,4 +73,5 @@ module.exports = {
63
73
symlinkNestedFirst : symlinkNestedFirst ,
64
74
symlinkNestedSecond : symlinkNestedSecond ,
65
75
contents : contents ,
76
+ contentsLarge : contentsLarge ,
66
77
} ;
0 commit comments