@@ -81,6 +81,7 @@ describe('lint', () => {
81
81
output : { stylish : '<stdout>' } ,
82
82
ignoreUnknownFormat : false ,
83
83
failOnUnmatchedGlobs : false ,
84
+ showDocumentationUrl : false ,
84
85
} ) ;
85
86
} ) ;
86
87
} ) ;
@@ -94,6 +95,7 @@ describe('lint', () => {
94
95
output : { stylish : '<stdout>' } ,
95
96
ignoreUnknownFormat : false ,
96
97
failOnUnmatchedGlobs : false ,
98
+ showDocumentationUrl : false ,
97
99
} ) ;
98
100
} ) ;
99
101
@@ -106,6 +108,7 @@ describe('lint', () => {
106
108
output : { stylish : '<stdout>' } ,
107
109
ignoreUnknownFormat : false ,
108
110
failOnUnmatchedGlobs : false ,
111
+ showDocumentationUrl : false ,
109
112
} ) ;
110
113
} ) ;
111
114
@@ -118,6 +121,7 @@ describe('lint', () => {
118
121
output : { json : '<stdout>' } ,
119
122
ignoreUnknownFormat : false ,
120
123
failOnUnmatchedGlobs : false ,
124
+ showDocumentationUrl : false ,
121
125
} ) ;
122
126
} ) ;
123
127
@@ -184,6 +188,7 @@ describe('lint', () => {
184
188
output : { stylish : '<stdout>' } ,
185
189
ignoreUnknownFormat : true ,
186
190
failOnUnmatchedGlobs : false ,
191
+ showDocumentationUrl : false ,
187
192
} ) ;
188
193
} ) ;
189
194
@@ -195,6 +200,7 @@ describe('lint', () => {
195
200
output : { stylish : '<stdout>' } ,
196
201
ignoreUnknownFormat : false ,
197
202
failOnUnmatchedGlobs : true ,
203
+ showDocumentationUrl : false ,
198
204
} ) ;
199
205
} ) ;
200
206
@@ -244,13 +250,13 @@ describe('lint', () => {
244
250
expect ( process . stderr . write ) . nthCalledWith ( 2 , `Error #1: ${ chalk . red ( 'some unhandled exception' ) } \n` ) ;
245
251
expect ( process . stderr . write ) . nthCalledWith (
246
252
3 ,
247
- expect . stringContaining ( `packages/cli/src/commands/__tests__/lint.test.ts:236 ` ) ,
253
+ expect . stringContaining ( `packages/cli/src/commands/__tests__/lint.test.ts:242 ` ) ,
248
254
) ;
249
255
250
256
expect ( process . stderr . write ) . nthCalledWith ( 4 , `Error #2: ${ chalk . red ( 'another one' ) } \n` ) ;
251
257
expect ( process . stderr . write ) . nthCalledWith (
252
258
5 ,
253
- expect . stringContaining ( `packages/cli/src/commands/__tests__/lint.test.ts:237 ` ) ,
259
+ expect . stringContaining ( `packages/cli/src/commands/__tests__/lint.test.ts:243 ` ) ,
254
260
) ;
255
261
256
262
expect ( process . stderr . write ) . nthCalledWith ( 6 , `Error #3: ${ chalk . red ( 'original exception' ) } \n` ) ;
0 commit comments