Drop node v10 support (#1471)

This commit is contained in:
Tomas Della Vedova
2021-05-20 16:16:45 +02:00
committed by GitHub
parent 507ed99e74
commit c64152b9b3
33 changed files with 655 additions and 668 deletions

View File

@ -289,7 +289,7 @@ test('Emit event', t => {
client.on(events.REQUEST, (err, request) => {
t.error(err)
t.deepEqual(request, { hello: 'world' })
t.same(request, { hello: 'world' })
})
client.emit(events.REQUEST, null, { hello: 'world' })