import type { UnitTest } from 'insomnia-data'; import { database as db, models } from 'insomnia-data'; const { type } = models.unitTest; export function create(patch: Partial = {}) { if (!patch.parentId) { throw new Error('New UnitTest missing `parentId` ' + JSON.stringify(patch)); } return db.docCreate(type, patch); } export function remove(unitTest: UnitTest) { return db.remove(unitTest); } export function update(unitTest: UnitTest, patch: Partial = {}) { return db.docUpdate(unitTest, patch); } export function getByParentId(parentId: string) { return db.findOne(type, { parentId }); } export function all() { return db.find(type); }