mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
6 lines
178 B
TypeScript
6 lines
178 B
TypeScript
import { DittoPolyPg } from './DittoPolyPg.ts';
|
|
|
|
Deno.test('DittoPolyPg', async () => {
|
|
const db = DittoPolyPg.create('memory://');
|
|
await DittoPolyPg.migrate(db.kysely);
|
|
});
|