@@ -81,6 +81,7 @@ describe('lint', () => {
8181 output : { stylish : '<stdout>' } ,
8282 ignoreUnknownFormat : false ,
8383 failOnUnmatchedGlobs : false ,
84+ showDocumentationUrl : false ,
8485 } ) ;
8586 } ) ;
8687 } ) ;
@@ -94,6 +95,7 @@ describe('lint', () => {
9495 output : { stylish : '<stdout>' } ,
9596 ignoreUnknownFormat : false ,
9697 failOnUnmatchedGlobs : false ,
98+ showDocumentationUrl : false ,
9799 } ) ;
98100 } ) ;
99101
@@ -106,6 +108,7 @@ describe('lint', () => {
106108 output : { stylish : '<stdout>' } ,
107109 ignoreUnknownFormat : false ,
108110 failOnUnmatchedGlobs : false ,
111+ showDocumentationUrl : false ,
109112 } ) ;
110113 } ) ;
111114
@@ -118,6 +121,7 @@ describe('lint', () => {
118121 output : { json : '<stdout>' } ,
119122 ignoreUnknownFormat : false ,
120123 failOnUnmatchedGlobs : false ,
124+ showDocumentationUrl : false ,
121125 } ) ;
122126 } ) ;
123127
@@ -184,6 +188,7 @@ describe('lint', () => {
184188 output : { stylish : '<stdout>' } ,
185189 ignoreUnknownFormat : true ,
186190 failOnUnmatchedGlobs : false ,
191+ showDocumentationUrl : false ,
187192 } ) ;
188193 } ) ;
189194
@@ -195,6 +200,7 @@ describe('lint', () => {
195200 output : { stylish : '<stdout>' } ,
196201 ignoreUnknownFormat : false ,
197202 failOnUnmatchedGlobs : true ,
203+ showDocumentationUrl : false ,
198204 } ) ;
199205 } ) ;
200206
@@ -244,13 +250,13 @@ describe('lint', () => {
244250 expect ( process . stderr . write ) . nthCalledWith ( 2 , `Error #1: ${ chalk . red ( 'some unhandled exception' ) } \n` ) ;
245251 expect ( process . stderr . write ) . nthCalledWith (
246252 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 ` ) ,
248254 ) ;
249255
250256 expect ( process . stderr . write ) . nthCalledWith ( 4 , `Error #2: ${ chalk . red ( 'another one' ) } \n` ) ;
251257 expect ( process . stderr . write ) . nthCalledWith (
252258 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 ` ) ,
254260 ) ;
255261
256262 expect ( process . stderr . write ) . nthCalledWith ( 6 , `Error #3: ${ chalk . red ( 'original exception' ) } \n` ) ;
0 commit comments