@@ -29,22 +29,22 @@ test('ignoreLinesToRegex', () => {
29
29
'! F # # ' ,
30
30
'#! G' ,
31
31
] ) ) . toEqual ( [
32
- { base : '.' , isNegation : false , pattern : 'a' , regex : / ^ (?: (? = . ) a ) $ / i} ,
33
- { base : '.' , isNegation : false , pattern : 'b ' , regex : / ^ (?: (? = . ) b ) $ / i} ,
34
- { base : '.' , isNegation : false , pattern : ' c ' , regex : / ^ (?: (? = . ) c ) $ / i} ,
35
- { base : '.' , isNegation : false , pattern : 'd #' , regex : / ^ (?: (? = . ) d # ) $ / i} ,
36
- { base : '.' , isNegation : false , pattern : 'e#' , regex : / ^ (?: (? = . ) e # ) $ / i} ,
37
- { base : '.' , isNegation : false , pattern : 'f # ' , regex : / ^ (?: (? = . ) f # ) $ / i} ,
38
- { base : '.' , isNegation : false , pattern : 'g# ' , regex : / ^ (?: (? = . ) g # ) $ / i} ,
39
- { base : '.' , isNegation : false , pattern : 'h # foo' , regex : / ^ (?: (? = . ) h # f o o ) $ / i} ,
40
- { base : '.' , isNegation : false , pattern : 'i# foo' , regex : / ^ (?: (? = . ) i # f o o ) $ / i} ,
41
- { base : '.' , isNegation : false , pattern : 'j # foo #' , regex : / ^ (?: (? = . ) j # f o o # ) $ / i} ,
42
- { base : '.' , isNegation : false , pattern : 'k # foo # #' , regex : / ^ (?: (? = . ) k # f o o # # ) $ / i} ,
43
- { base : '.' , isNegation : true , pattern : 'A' , regex : / ^ (?: (? = . ) A ) $ / i} ,
44
- { base : '.' , isNegation : true , pattern : ' B' , regex : / ^ (?: (? = . ) B ) $ / i} ,
45
- { base : '.' , isNegation : true , pattern : ' C ' , regex : / ^ (?: (? = . ) C ) $ / i} ,
46
- { base : '.' , isNegation : true , pattern : ' D #' , regex : / ^ (?: (? = . ) D # ) $ / i} ,
47
- { base : '.' , isNegation : true , pattern : ' E # ' , regex : / ^ (?: (? = . ) E # ) $ / i} ,
48
- { base : '.' , isNegation : true , pattern : ' F # # ' , regex : / ^ (?: (? = . ) F # # ) $ / i} ,
32
+ { base : '.' , isNegation : false , pattern : 'a' , regex : / ^ (?: a ) $ / i} ,
33
+ { base : '.' , isNegation : false , pattern : 'b ' , regex : / ^ (?: b ) $ / i} ,
34
+ { base : '.' , isNegation : false , pattern : ' c ' , regex : / ^ (?: c ) $ / i} ,
35
+ { base : '.' , isNegation : false , pattern : 'd #' , regex : / ^ (?: d # ) $ / i} ,
36
+ { base : '.' , isNegation : false , pattern : 'e#' , regex : / ^ (?: e # ) $ / i} ,
37
+ { base : '.' , isNegation : false , pattern : 'f # ' , regex : / ^ (?: f # ) $ / i} ,
38
+ { base : '.' , isNegation : false , pattern : 'g# ' , regex : / ^ (?: g # ) $ / i} ,
39
+ { base : '.' , isNegation : false , pattern : 'h # foo' , regex : / ^ (?: h # f o o ) $ / i} ,
40
+ { base : '.' , isNegation : false , pattern : 'i# foo' , regex : / ^ (?: i # f o o ) $ / i} ,
41
+ { base : '.' , isNegation : false , pattern : 'j # foo #' , regex : / ^ (?: j # f o o # ) $ / i} ,
42
+ { base : '.' , isNegation : false , pattern : 'k # foo # #' , regex : / ^ (?: k # f o o # # ) $ / i} ,
43
+ { base : '.' , isNegation : true , pattern : 'A' , regex : / ^ (?: A ) $ / i} ,
44
+ { base : '.' , isNegation : true , pattern : ' B' , regex : / ^ (?: B ) $ / i} ,
45
+ { base : '.' , isNegation : true , pattern : ' C ' , regex : / ^ (?: C ) $ / i} ,
46
+ { base : '.' , isNegation : true , pattern : ' D #' , regex : / ^ (?: D # ) $ / i} ,
47
+ { base : '.' , isNegation : true , pattern : ' E # ' , regex : / ^ (?: E # ) $ / i} ,
48
+ { base : '.' , isNegation : true , pattern : ' F # # ' , regex : / ^ (?: F # # ) $ / i} ,
49
49
] ) ;
50
50
} ) ;
0 commit comments