UNPKG

@cloudflare/vitest-pool-workers

Version:

Workers Vitest integration for writing Vitest unit and integration tests that run inside the Workers runtime

8 lines (7 loc) 327 B
import type { D1Migration } from "../shared/d1"; /** * Reads all migrations in `migrationsPath`, ordered by migration number. * Each migration will have its contents split into an array of SQL queries. */ export declare function readD1Migrations(migrationsPath: string): Promise<D1Migration[]>; export type { D1Migration };