import { Logger } from "../test-adapter.mjs"; import { TestSuiteStats } from "../create-test-suite.mjs"; import "../adapter.mjs"; //#region src/adapter/suites/transactions.d.ts /** * This test suite tests the transaction functionality of the adapter. */ declare const transactionsTestSuite: (options?: { disableTests?: Partial & { ALL?: boolean; }> | undefined; } | undefined) => (helpers: { adapter: () => Promise>; log: Logger; adapterDisplayName: string; getBetterAuthOptions: () => import("better-auth").BetterAuthOptions; modifyBetterAuthOptions: (options: import("better-auth").BetterAuthOptions) => Promise; cleanup: () => Promise; runMigrations: () => Promise; prefixTests?: string | undefined; onTestFinish: (stats: TestSuiteStats) => Promise; customIdGenerator?: (() => any | Promise | undefined) | undefined; transformIdOutput?: ((id: any) => string | undefined) | undefined; }) => Promise; //#endregion export { transactionsTestSuite };