We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87fff2e commit 227f879Copy full SHA for 227f879
src/buildExec.test.ts
@@ -2,15 +2,14 @@ import buildExec from './buildExec';
2
3
test('no arguments', () => {
4
const {execArgs, filepath, failCi} = buildExec();
5
- expect(execArgs.slice(0, -1)).toEqual([
+ expect(execArgs.slice(0, -2)).toEqual([
6
'codecov.sh',
7
'-n',
8
'',
9
'-F',
10
11
'-Q',
12
'github-action',
13
- '-C',
14
]);
15
expect(filepath).toEqual('codecov.sh');
16
expect(failCi).toBeFalsy();
0 commit comments