@@ -558,7 +558,7 @@ test("custom fs, using node:fs", (t) => {
558
558
"directory" : "test/markdownlint-cli2-jsonc" ,
559
559
"argv" : [ "**/*.md" ] ,
560
560
"optionsOverride" : {
561
- "outputFormatters" : [ [ outputFormatterLengthIs ( t , 9 ) ] ]
561
+ "outputFormatters" : [ [ outputFormatterLengthIs ( t , 10 ) ] ]
562
562
} ,
563
563
"fs" : require ( "node:fs" )
564
564
} ) .
@@ -573,7 +573,7 @@ test("custom fs, using node:fs and noRequire=false", (t) => {
573
573
"directory" : "test/markdownlint-cjs" ,
574
574
"argv" : [ "**/*.md" ] ,
575
575
"optionsOverride" : {
576
- "outputFormatters" : [ [ outputFormatterLengthIs ( t , 10 ) ] ]
576
+ "outputFormatters" : [ [ outputFormatterLengthIs ( t , 11 ) ] ]
577
577
} ,
578
578
"fs" : require ( "node:fs" ) ,
579
579
"noRequire" : false
@@ -589,7 +589,7 @@ test("custom fs, using node:fs and noRequire=true", (t) => {
589
589
"directory" : "test/markdownlint-cjs" ,
590
590
"argv" : [ "**/*.md" ] ,
591
591
"optionsOverride" : {
592
- "outputFormatters" : [ [ outputFormatterLengthIs ( t , 13 ) ] ]
592
+ "outputFormatters" : [ [ outputFormatterLengthIs ( t , 14 ) ] ]
593
593
} ,
594
594
"fs" : require ( "node:fs" ) ,
595
595
"noRequire" : true
@@ -605,7 +605,7 @@ test("custom fs, using fsMock", (t) => {
605
605
"directory" : "/mock" ,
606
606
"argv" : [ "**/*.md" , "viewme.md" ] ,
607
607
"optionsOverride" : {
608
- "outputFormatters" : [ [ outputFormatterLengthIs ( t , 9 ) ] ]
608
+ "outputFormatters" : [ [ outputFormatterLengthIs ( t , 10 ) ] ]
609
609
} ,
610
610
"fs" : new FsMock ( path . join ( __dirname , "markdownlint-cli2-jsonc" ) ) ,
611
611
"noRequire" : true
@@ -621,7 +621,7 @@ test("custom fs, using fsMock simulating symbolic links", (t) => {
621
621
"directory" : "/mock" ,
622
622
"argv" : [ "**/*.md" , "viewme.md" ] ,
623
623
"optionsOverride" : {
624
- "outputFormatters" : [ [ outputFormatterLengthIs ( t , 9 ) ] ]
624
+ "outputFormatters" : [ [ outputFormatterLengthIs ( t , 10 ) ] ]
625
625
} ,
626
626
"fs" : new FsMock ( path . join ( __dirname , "markdownlint-cli2-jsonc" ) , true ) ,
627
627
"noRequire" : true
0 commit comments