Skip to content

Commit

Permalink
revent unreleated test
Browse files Browse the repository at this point in the history
  • Loading branch information
jokester committed Jul 1, 2024
1 parent 1330cf9 commit b402cb7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/oauth-providers/test/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,8 @@ describe('OAuth Middleware', () => {
grantedScopes: string[]
}

expect(res?.status).toBe(200)
expect(res).not.toBeNull()
expect(res.status).toBe(200)
expect(response.user).toEqual(googleUser)
expect(response.grantedScopes).toEqual(dummyToken.scope.split(' '))
expect(response.token).toEqual({
Expand Down

0 comments on commit b402cb7

Please sign in to comment.