Files
Oxicloud/tests/e2e/global-teardown.ts
Edouard Vanbelle 872abd4d27 test: add front end folder management test (creation, renaming, etc)
note: firefox test remove due to idempotence issue
2026-05-19 13:31:20 +02:00

7 lines
214 B
TypeScript

import { execSync } from 'child_process';
import * as path from 'path';
export default async function globalTeardown() {
execSync(`bash ${path.join(__dirname, '../common/stop-db.sh')}`, { stdio: 'inherit' });
}