()
| 2 | import { smokeTest } from './test' |
| 3 | |
| 4 | async function main() { |
| 5 | const connectionString = `${process.env.JS_NEON_DATABASE_URL as string}` |
| 6 | |
| 7 | const adapter = new PrismaNeonHttp(connectionString, { |
| 8 | arrayMode: false, |
| 9 | fullResults: true, |
| 10 | }) |
| 11 | |
| 12 | await smokeTest(adapter) |
| 13 | } |
| 14 | |
| 15 | main().catch((e) => { |
| 16 | console.error(e) |