mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-10 04:57:24 +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();
|
||||
|
||||
expect(execArgs).toEqual([
|
||||
expect(execArgs).toMatchObject([
|
||||
...baseExpectation,
|
||||
'-f',
|
||||
'./client-coverage.txt',
|
||||
|
|
@ -162,7 +162,7 @@ describe('trim arguments after splitting them', () => {
|
|||
|
||||
const {execArgs} = buildExec();
|
||||
|
||||
expect(execArgs).toEqual([
|
||||
expect(execArgs).toMatchObject([
|
||||
...baseExpectation,
|
||||
'-F',
|
||||
'ios',
|
||||
|
|
@ -184,7 +184,7 @@ describe('trim arguments after splitting them', () => {
|
|||
|
||||
const {execArgs} = buildExec();
|
||||
|
||||
expect(execArgs).toEqual([
|
||||
expect(execArgs).toMatchObject([
|
||||
...baseExpectation,
|
||||
'-X',
|
||||
'network',
|
||||
|
|
|
|||
Loading…
Reference in a new issue