Skip to content

Commit

Permalink
Update authentication client test
Browse files Browse the repository at this point in the history
  • Loading branch information
daffl committed Oct 31, 2024
1 parent 8f5a54e commit 68aeefb
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ describe('@feathersjs/authentication-client Socket.io integration', () => {
await app.listen(9777)
})

after((done) => app.io.close(() => done()))
after((done) => {
app.io.close(() => done())
})

it('allows to authenticate with handshake headers and sends login event', async () => {
const user = { email: '[email protected]', password: 'alsosecret' }
Expand Down

0 comments on commit 68aeefb

Please sign in to comment.