mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-12-17 17:23:08 +03:00
12 lines
267 B
TypeScript
12 lines
267 B
TypeScript
|
|
import { test } from './db-test';
|
||
|
|
|
||
|
|
const utils = require('../../global-utils');
|
||
|
|
|
||
|
|
utils.loadEnv();
|
||
|
|
|
||
|
|
test('DB teardown ?', async ({ serviceName }) => {
|
||
|
|
if( process.env.PW_KEEP_SERVICE_RUNNNING !== "true" ) {
|
||
|
|
utils.stopComposeService(serviceName);
|
||
|
|
}
|
||
|
|
});
|