2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/dummy/tests/testDummy.spec.ts
2022-10-31 13:03:50 +05:30

28 lines
823 B
TypeScript

import { assertDoesNotThrow } from 'backend/database/tests/helpers';
import { purchaseItemPartyMap } from 'dummy/helpers';
import test from 'tape';
import { getTestDbPath, getTestFyo } from 'tests/helpers';
import { setupDummyInstance } from '..';
const dbPath = getTestDbPath();
const fyo = getTestFyo();
test('setupDummyInstance', async () => {
await assertDoesNotThrow(async () => {
await setupDummyInstance(dbPath, fyo, 1, 25);
}, 'setup instance failed');
});
test('purchaseItemParty Existance', async (t) => {
for (const item in purchaseItemPartyMap) {
t.ok(await fyo.db.exists('Item', item), `item exists: ${item}`);
const party = purchaseItemPartyMap[item];
t.ok(await fyo.db.exists('Party', party), `party exists: ${party}`);
}
});
test.onFinish(async () => {
await fyo.close();
});