From d08945811eabe57211df41156eb5ac7ab92facc6 Mon Sep 17 00:00:00 2001 From: Ildar Kamalov Date: Mon, 3 Feb 2025 13:23:40 +0300 Subject: [PATCH] rm sudo --- 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 91e5e599..7f54d357 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 - ? 'sudo ./AdGuardHome --local-frontend -v | tee ./AdGuardHome.stdout 2>./AdGuardHome.stderr &' + ? './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: '..',