Skip to content

Commit

Permalink
fixup: coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
mastermatt committed Jul 18, 2020
1 parent 1908f91 commit 6d654a2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_common.js
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,10 @@ describe('`dataEqual()`', () => {
)
expect(result).to.equal(true)
})
it('does not equate arrays of different length', () => {
const result = common.dataEqual(['a'], ['a','b'])
expect(result).to.equal(false)
})
})

it('testing timers are deleted correctly', done => {
Expand Down

0 comments on commit 6d654a2

Please sign in to comment.