From f89a24d6e99b4257e442f01bf68c3f72eed2f323 Mon Sep 17 00:00:00 2001 From: Ildar Kamalov Date: Mon, 3 Feb 2025 13:16:15 +0300 Subject: [PATCH] run adguard home in the background --- client/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/playwright.config.ts b/client/playwright.config.ts index 50d8171b..91e5e599 100644 --- a/client/playwright.config.ts +++ b/client/playwright.config.ts @@ -71,7 +71,7 @@ export default defineConfig({ webServer: { stdout: process.env.CI ? 'pipe' : 'ignore', command: process.env.CI - ? './AdGuardHome --local-frontend -v' + ? 'sudo ./AdGuardHome --local-frontend -v | tee ./AdGuardHome.stdout 2>./AdGuardHome.stderr &' : 'rm -f AdGuardHome.yaml && sudo ./AdGuardHome --local-frontend -v', url: 'http://127.0.0.1:3000', cwd: '..',