File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 4242 node-version-file : .nvmrc
4343 - name : Install Node dependencies
4444 run : npm ci
45- - run : node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.txt
45+ - run : node --test --experimental-test-coverage --test-reporter=spec --test-reporter= lcov --test-reporter-destination=stdout --test-reporter-destination=lcov.txt
4646 - uses : codecov/codecov-action@v4
4747 with :
4848 token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change @@ -41,9 +41,11 @@ describe('S3FileInput', () => {
4141 } )
4242
4343 test ( 'changeHandler' , ( ) => {
44+ const form = document . createElement ( 'form' )
4445 const input = new s3file . S3FileInput ( )
4546 input . keys = [ 'key' ]
4647 input . upload = 'upload'
48+ form . appendChild ( input )
4749 input . changeHandler ( )
4850 assert ( ! input . keys . length )
4951 assert ( ! input . upload )
You can’t perform that action at this time.
0 commit comments