Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test(authentication-client): fix await
  • Loading branch information
fratzinger committed Mar 27, 2024
commit ca2608fb0806212041112541deabe16830e32e69
4 changes: 2 additions & 2 deletions packages/authentication-client/test/integration/commons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ export default (
password
})

client.authentication.reset()
client.authenticate()
await client.authentication.reset()
await client.authenticate()
const result = await client.service('dummy').find()

assert.strictEqual(result.provider, provider)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { io } from 'socket.io-client'
import assert from 'assert'
import { feathers, Application } from '@feathersjs/feathers'
import { feathers } from '@feathersjs/feathers'
import socketio from '@feathersjs/socketio'
import socketioClient from '@feathersjs/socketio-client'

Expand Down