@@ -46,11 +46,11 @@ test("process switch directive", () => {
4646 return mockDirectives (
4747 ` alalalasdas # 123
4848 # 123 alalalasdas ` ,
49- [ [ "switch" , "# 123" ] ]
49+ [ [ "switch" , "# 123" ] ] ,
5050 ) . then ( ( result ) => {
5151 expect ( result ) . toEqual (
5252 ` # 123 alalalasdas
53- alalalasdas # 123 `
53+ alalalasdas # 123 ` ,
5454 ) ;
5555 } ) ;
5656} ) ;
@@ -68,7 +68,7 @@ test("process wildcard markers", () => {
6868 [
6969 [ "pull" , "#REG*" ] ,
7070 [ "push" , "#REG*GITHUB" ] ,
71- ]
71+ ] ,
7272 ) . then ( ( result ) => {
7373 expect ( result ) . toEqual ( `
7474 rog=true #ROG
@@ -98,7 +98,7 @@ test("process escaping", () => {
9898 \\* c
9999 d \\\\*
100100 e *
101- ` )
101+ ` ) ,
102102 )
103103 . then ( ( ) => mockDirectives ( testSet , [ [ "pull" , "\\\\*" ] ] ) )
104104 . then ( ( result ) =>
@@ -108,7 +108,7 @@ test("process escaping", () => {
108108 \\* c
109109 \\\\* d
110110 e *
111- ` )
111+ ` ) ,
112112 )
113113 . then ( ( ) => mockDirectives ( testSet , [ [ "pull" , "\\*" ] ] ) )
114114 . then ( ( result ) =>
@@ -118,7 +118,7 @@ test("process escaping", () => {
118118 c \\*
119119 d \\\\*
120120 * e
121- ` )
121+ ` ) ,
122122 ) ;
123123} ) ;
124124
@@ -188,7 +188,7 @@ test("usage switch directive", () => {
188188 package-lock=false #WRITE_LOCK
189189 #WRITE_LOCK package-lock=true
190190` ,
191- [ [ "switch" , "#WRITE_LOCK" ] ]
191+ [ [ "switch" , "#WRITE_LOCK" ] ] ,
192192 ) . then ( ( result ) => {
193193 expect ( result ) . toEqual ( `
194194 #WRITE_LOCK package-lock=false
@@ -202,7 +202,7 @@ test("usage multiline comments", () => {
202202 <option>deleteall</option> <!--DELETE
203203 -->
204204` ,
205- [ [ "pull" , "<!--DELETE" ] ]
205+ [ [ "pull" , "<!--DELETE" ] ] ,
206206 ) . then ( ( result ) => {
207207 expect ( result ) . toEqual ( `
208208 <!--DELETE <option>deleteall</option>
@@ -221,7 +221,7 @@ test("usage markers with wildcards", () => {
221221 [
222222 [ "pull" , "#REG*" ] ,
223223 [ "push" , "#REG*CUSTOM" ] ,
224- ]
224+ ] ,
225225 ) . then ( ( result ) => {
226226 expect ( result ) . toEqual ( `
227227 #REG_NPM registry=https://registry.npmjs.org
@@ -237,7 +237,7 @@ test("usage markers with escaped wildcard", () => {
237237 const win=true /*WIN
238238 */
239239` ,
240- [ [ "pull" , "/\\*WIN" ] ]
240+ [ [ "pull" , "/\\*WIN" ] ] ,
241241 ) . then ( ( result ) => {
242242 expect ( result ) . toEqual ( `
243243 /*WIN const win=true
0 commit comments