Skip to content

Commit

Permalink
test: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
guanzo committed Nov 2, 2023
1 parent 22d87a4 commit 7e9dd0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe('Saturn client', () => {
})

describe('Fetch a CID', () => {
const client = new Saturn({ clientKey })
const client = new Saturn({ clientKey, authURL: TEST_AUTH })
const handlers = [
mockJWT(TEST_AUTH)
]
Expand Down Expand Up @@ -86,7 +86,7 @@ describe('Saturn client', () => {
mockJWT(TEST_AUTH)
]
const server = getMockServer(handlers)
const client = new Saturn({ clientKey, clientId: 'tesd' })
const client = new Saturn({ clientKey, clientId: 'tesd', authURL: TEST_AUTH })
before(() => {
server.listen(MSW_SERVER_OPTS)
})
Expand Down

0 comments on commit 7e9dd0e

Please sign in to comment.