Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cuebit committed Mar 5, 2020
1 parent 3496e24 commit 44f23b9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/unit/support/Utils.spec.ts
Expand Up @@ -134,21 +134,21 @@ describe('Unit - Utils', () => {
{
id: 1,
deeper: {
id: 2,
},
id: 2
}
},
{
id: 2,
deeper: {
id: 3,
},
id: 3
}
}
]
}
]
}

const clone = Utils.cloneDeep(data);
const clone = Utils.cloneDeep(data)

expect(clone).toStrictEqual(data)

Expand Down

0 comments on commit 44f23b9

Please sign in to comment.