chore: fix adapter tests (#4844)

This commit is contained in:
Maxwell
2025-10-01 02:58:51 +10:00
committed by Alex Yang
parent 981458338d
commit 0a1df9e43f
73 changed files with 3676 additions and 1819 deletions

View File

@@ -43,6 +43,10 @@ const dialect = new MssqlDialect({
server: 'localhost',
}),
},
TYPES: {
...Tedious.TYPES,
DateTime: Tedious.TYPES.DateTime2,
},
})
export const auth = betterAuth({

View File

@@ -21,6 +21,7 @@ export const auth = betterAuth({
user: "root",
password: "password",
database: "database",
timezone: "Z", // Important to ensure consistent timezone values
}),
});
```