Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrockhu committed Mar 9, 2021
1 parent 87fff2e commit 227f879
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/buildExec.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@ import buildExec from './buildExec';

test('no arguments', () => {
const {execArgs, filepath, failCi} = buildExec();
expect(execArgs.slice(0, -1)).toEqual([
expect(execArgs.slice(0, -2)).toEqual([
'codecov.sh',
'-n',
'',
'-F',
'',
'-Q',
'github-action',
'-C',
]);
expect(filepath).toEqual('codecov.sh');
expect(failCi).toBeFalsy();
Expand Down

0 comments on commit 227f879

Please sign in to comment.