runtipi/e2e/helpers/global-setup.ts
2023-06-03 19:18:18 +02:00

10 lines
137 B
TypeScript

import { clearDatabase } from './db';
/**
*
*/
async function globalSetup() {
await clearDatabase();
}
export default globalSetup;