This commit is contained in:
Tom Hu
2021-03-08 19:21:55 -05:00
parent 87fff2e891
commit 227f879cd0

View File

@@ -2,7 +2,7 @@ import buildExec from './buildExec';
test('no arguments', () => { test('no arguments', () => {
const {execArgs, filepath, failCi} = buildExec(); const {execArgs, filepath, failCi} = buildExec();
expect(execArgs.slice(0, -1)).toEqual([ expect(execArgs.slice(0, -2)).toEqual([
'codecov.sh', 'codecov.sh',
'-n', '-n',
'', '',
@@ -10,7 +10,6 @@ test('no arguments', () => {
'', '',
'-Q', '-Q',
'github-action', 'github-action',
'-C',
]); ]);
expect(filepath).toEqual('codecov.sh'); expect(filepath).toEqual('codecov.sh');
expect(failCi).toBeFalsy(); expect(failCi).toBeFalsy();