File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ function loadSupportedDoc () {
205205 results . push ( { name : n , versions : row [ 1 ] } )
206206 } )
207207 } else {
208- match = / ^ h t t p s : \/ \/ .* \[ ( .* ) \] $ / . exec ( row [ 0 ] )
208+ match = / ^ h t t p s : \/ \/ .* \[ ( .* ) \] $ / . exec ( row [ 0 ] . trim ( ) )
209209 if ( ! match ) {
210210 throw new Error ( `could not parse this table cell text from docs/supported-technologies.asciidoc: ${ JSON . stringify ( row [ 0 ] ) } ` )
211211 }
@@ -248,6 +248,8 @@ function bitrot (moduleNames) {
248248 log . debug ( { moduleNames } , 'bitrot' )
249249 var tavYmls = [
250250 yaml . load ( fs . readFileSync ( '.tav.yml' , 'utf8' ) ) ,
251+ yaml . load ( fs . readFileSync ( './test/opentelemetry-bridge/.tav.yml' , 'utf8' ) ) ,
252+ yaml . load ( fs . readFileSync ( './test/opentelemetry-metrics/fixtures/.tav.yml' , 'utf8' ) ) ,
251253 yaml . load ( fs . readFileSync ( 'test/instrumentation/modules/next/a-nextjs-app/.tav.yml' , 'utf8' ) )
252254 ]
253255 var supported = loadSupportedDoc ( )
You can’t perform that action at this time.
0 commit comments