mirror of
https://github.com/dani-garcia/vaultwarden.wiki.git
synced 2026-08-07 01:23:43 +03:00
* Config server setting suppressOnboardingInterstitials * Backport fix playwright tests --------- Co-authored-by: Timshel <timshel@users.noreply.github.com>
16 lines
474 B
TypeScript
16 lines
474 B
TypeScript
import { test, type FullConfig } from '@playwright/test';
|
|
|
|
const { execSync } = require('node:child_process');
|
|
const utils = require('../../global-utils');
|
|
|
|
utils.loadEnv();
|
|
|
|
test('Keycloak teardown', async () => {
|
|
if( process.env.PW_KEEP_SERVICE_RUNNING === "true" ) {
|
|
console.log("Keep Keycloak running");
|
|
} else {
|
|
console.log("Keycloak stopping");
|
|
execSync(`docker compose --profile keycloak --env-file test.env stop Keycloak`);
|
|
}
|
|
});
|