Skip to content
Merged
Changes from all commits
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
6 changes: 5 additions & 1 deletion packages/core/test/actions/callback.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,11 @@ describe("assert GET callback action", () => {
})

describe("OAuth check cookies are bound to their provider", () => {
const cookieOptions = { secure: true, sameSite: "lax" as const, httpOnly: true }
const cookieOptions = {
secure: true,
sameSite: "lax" as const,
httpOnly: true,
}
const cookies = {
state: { name: "authjs.state", options: cookieOptions },
nonce: { name: "authjs.nonce", options: cookieOptions },
Expand Down
Loading