mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-15 07:27:24 +00:00
Update buildExec.test.ts
This commit is contained in:
parent
0db74381c5
commit
0abb23f56a
1 changed files with 21 additions and 21 deletions
|
|
@ -141,13 +141,13 @@ describe('trim arguments after splitting them', () => {
|
||||||
const {execArgs} = buildExec();
|
const {execArgs} = buildExec();
|
||||||
|
|
||||||
expect(execArgs).toEqual(
|
expect(execArgs).toEqual(
|
||||||
expect.arrayContaining([
|
expect.arrayContaining([
|
||||||
...baseExpectation,
|
...baseExpectation,
|
||||||
'-f',
|
'-f',
|
||||||
'./client-coverage.txt',
|
'./client-coverage.txt',
|
||||||
'-f',
|
'-f',
|
||||||
'./lcov.info',
|
'./lcov.info',
|
||||||
]),
|
]),
|
||||||
);
|
);
|
||||||
|
|
||||||
for (const env of Object.keys(envs)) {
|
for (const env of Object.keys(envs)) {
|
||||||
|
|
@ -165,13 +165,13 @@ describe('trim arguments after splitting them', () => {
|
||||||
const {execArgs} = buildExec();
|
const {execArgs} = buildExec();
|
||||||
|
|
||||||
expect(execArgs).toEqual(
|
expect(execArgs).toEqual(
|
||||||
expect.arrayContaining([
|
expect.arrayContaining([
|
||||||
...baseExpectation,
|
...baseExpectation,
|
||||||
'-F',
|
'-F',
|
||||||
'ios',
|
'ios',
|
||||||
'-F',
|
'-F',
|
||||||
'mobile',
|
'mobile',
|
||||||
]),
|
]),
|
||||||
);
|
);
|
||||||
|
|
||||||
for (const env of Object.keys(envs)) {
|
for (const env of Object.keys(envs)) {
|
||||||
|
|
@ -189,13 +189,13 @@ describe('trim arguments after splitting them', () => {
|
||||||
const {execArgs} = buildExec();
|
const {execArgs} = buildExec();
|
||||||
|
|
||||||
expect(execArgs).toEqual(
|
expect(execArgs).toEqual(
|
||||||
expect.arrayContaining([
|
expect.arrayContaining([
|
||||||
...baseExpectation,
|
...baseExpectation,
|
||||||
'-X',
|
'-X',
|
||||||
'network',
|
'network',
|
||||||
'-X',
|
'-X',
|
||||||
'gcov',
|
'gcov',
|
||||||
]),
|
]),
|
||||||
);
|
);
|
||||||
|
|
||||||
for (const env of Object.keys(envs)) {
|
for (const env of Object.keys(envs)) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue