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