mirror of
https://github.com/dani-garcia/vaultwarden.wiki.git
synced 2026-08-06 22:03:44 +03:00
* Config server setting suppressOnboardingInterstitials * Backport fix playwright tests --------- Co-authored-by: Timshel <timshel@users.noreply.github.com>
12 lines
266 B
TypeScript
12 lines
266 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_RUNNING !== "true" ) {
|
|
utils.stopComposeService(serviceName);
|
|
}
|
|
});
|