@@ -401,13 +401,13 @@ test('🧪 run() should convert patterns to locations.', async (t) => {
401
401
`::debug::✅ CC Reporter before-build checkin completed...` ,
402
402
`ℹ️ 'coverageCommand' not set, so skipping building coverage report!` ,
403
403
`::debug::Parsing 2 coverage location(s) — ${ DEFAULT_WORKDIR } /file-a.lcov:lcov,${ DEFAULT_WORKDIR } /file-b.lcov:lcov (object)` ,
404
- `[command]${ DEFAULT_WORKDIR } /test.sh format-coverage ${ DEFAULT_WORKDIR } /file-a.lcov -t lcov -o codeclimate.0.json` ,
404
+ `[command]${ DEFAULT_WORKDIR } /test.${ EXE_EXT } format-coverage ${ DEFAULT_WORKDIR } /file-a.lcov -t lcov -o codeclimate.0.json` ,
405
405
`format-coverage ${ DEFAULT_WORKDIR } /file-a.lcov -t lcov -o codeclimate.0.json` ,
406
- `[command]${ DEFAULT_WORKDIR } /test.sh format-coverage ${ DEFAULT_WORKDIR } /file-b.lcov -t lcov -o codeclimate.1.json` ,
406
+ `[command]${ DEFAULT_WORKDIR } /test.${ EXE_EXT } format-coverage ${ DEFAULT_WORKDIR } /file-b.lcov -t lcov -o codeclimate.1.json` ,
407
407
`format-coverage ${ DEFAULT_WORKDIR } /file-b.lcov -t lcov -o codeclimate.1.json` ,
408
- `[command]${ DEFAULT_WORKDIR } /test.sh sum-coverage codeclimate.0.json codeclimate.1.json -p 2 -o coverage.total.json` ,
408
+ `[command]${ DEFAULT_WORKDIR } /test.${ EXE_EXT } sum-coverage codeclimate.0.json codeclimate.1.json -p 2 -o coverage.total.json` ,
409
409
`sum-coverage codeclimate.0.json codeclimate.1.json -p 2 -o coverage.total.json` ,
410
- `[command]${ DEFAULT_WORKDIR } /test.sh upload-coverage -i coverage.total.json` ,
410
+ `[command]${ DEFAULT_WORKDIR } /test.${ EXE_EXT } upload-coverage -i coverage.total.json` ,
411
411
`upload-coverage -i coverage.total.json` ,
412
412
`::debug::✅ CC Reporter upload coverage completed!` ,
413
413
`` ,
@@ -589,7 +589,7 @@ test('🧪 run() should throw an error if the checksum verification fails.', asy
589
589
test ( '🧪 run() should throw an error if the GPG signature verification fails.' , async ( t ) => {
590
590
t . plan ( 1 ) ;
591
591
t . teardown ( ( ) => sandbox . restore ( ) ) ;
592
- const filePath = ' ./test.sh' ;
592
+ const filePath = ` ./test.${ EXE_EXT } ` ;
593
593
nock ( 'http://localhost.test' )
594
594
. get ( '/dummy-cc-reporter' )
595
595
. reply ( 200 , async ( ) => {
0 commit comments