Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2025-01-09 12:05:42 +01:00
12 Zeilen
267 B
TypeScript
12 Zeilen
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);
|
||
|
}
|
||
|
});
|