Files
lobehub/packages/database/tests/setup-db.ts
2025-08-25 22:38:41 +08:00

8 lines
225 B
TypeScript

// import env
import * as dotenv from 'dotenv';
// mock indexedDB to test with dexie
// refs: https://github.com/dumbmatter/fakeIndexedDB#dexie-and-other-indexeddb-api-wrappers
import 'fake-indexeddb/auto';
dotenv.config();