mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-14 06:57:26 +00:00
Use toMatchObject instead of toEqual
This commit is contained in:
parent
31e29e4799
commit
800a9b3e3d
1 changed files with 3 additions and 3 deletions
|
|
@ -140,7 +140,7 @@ describe('trim arguments after splitting them', () => {
|
||||||
|
|
||||||
const {execArgs} = buildExec();
|
const {execArgs} = buildExec();
|
||||||
|
|
||||||
expect(execArgs).toEqual([
|
expect(execArgs).toMatchObject([
|
||||||
...baseExpectation,
|
...baseExpectation,
|
||||||
'-f',
|
'-f',
|
||||||
'./client-coverage.txt',
|
'./client-coverage.txt',
|
||||||
|
|
@ -162,7 +162,7 @@ describe('trim arguments after splitting them', () => {
|
||||||
|
|
||||||
const {execArgs} = buildExec();
|
const {execArgs} = buildExec();
|
||||||
|
|
||||||
expect(execArgs).toEqual([
|
expect(execArgs).toMatchObject([
|
||||||
...baseExpectation,
|
...baseExpectation,
|
||||||
'-F',
|
'-F',
|
||||||
'ios',
|
'ios',
|
||||||
|
|
@ -184,7 +184,7 @@ describe('trim arguments after splitting them', () => {
|
||||||
|
|
||||||
const {execArgs} = buildExec();
|
const {execArgs} = buildExec();
|
||||||
|
|
||||||
expect(execArgs).toEqual([
|
expect(execArgs).toMatchObject([
|
||||||
...baseExpectation,
|
...baseExpectation,
|
||||||
'-X',
|
'-X',
|
||||||
'network',
|
'network',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue