mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
23 lines
569 B
TypeScript
23 lines
569 B
TypeScript
|
import { DatabaseManager } from 'backend/database/manager';
|
||
|
import { setupDummyInstance } from 'dummy';
|
||
|
import { unlink } from 'fs/promises';
|
||
|
import { Fyo } from 'fyo';
|
||
|
import { DummyAuthDemux } from 'fyo/tests/helpers';
|
||
|
import { getTestDbPath } from 'tests/helpers';
|
||
|
|
||
|
async function run() {
|
||
|
const fyo = new Fyo({
|
||
|
DatabaseDemux: DatabaseManager,
|
||
|
AuthDemux: DummyAuthDemux,
|
||
|
isTest: true,
|
||
|
isElectron: false,
|
||
|
});
|
||
|
const dbPath = getTestDbPath();
|
||
|
|
||
|
await setupDummyInstance(dbPath, fyo, 1, 100);
|
||
|
await fyo.close();
|
||
|
await unlink(dbPath);
|
||
|
}
|
||
|
|
||
|
run();
|