Files
Oxicloud/tests/e2e/global-teardown.ts
T

7 lines
214 B
TypeScript
Raw Normal View History

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' });
}