File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import type {
2323} from "@auth/core/adapters"
2424import type { Pool } from "@neondatabase/serverless"
2525
26- export default function PostgresAdapter ( client : Pool ) : Adapter {
26+ export default function NeonAdapter ( client : Pool ) : Adapter {
2727 return {
2828 async createVerificationToken (
2929 verificationToken : VerificationToken
Original file line number Diff line number Diff line change 11import { runBasicTests } from "utils/adapter"
2- import PostgresAdapter from "../src"
2+ import NeonAdapter from "../src"
33import { neonConfig , Pool } from "@neondatabase/serverless"
44
55// Using websockets
@@ -27,7 +27,7 @@ const client = new Pool({
2727} )
2828
2929runBasicTests ( {
30- adapter : PostgresAdapter ( client ) ,
30+ adapter : NeonAdapter ( client ) ,
3131 db : {
3232 disconnect : async ( ) => {
3333 await client . end ( )
You can’t perform that action at this time.
0 commit comments