From bbdb03f50d369d8c301a2898aca448dcab86f65b Mon Sep 17 00:00:00 2001 From: Ajay Date: Thu, 19 Jun 2025 16:57:17 -0400 Subject: [PATCH] Use chromium for tests --- test/selenium.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/selenium.test.ts b/test/selenium.test.ts index e6db6cdb..20c3f3b0 100644 --- a/test/selenium.test.ts +++ b/test/selenium.test.ts @@ -58,7 +58,7 @@ async function setup(): Promise { options.addArguments("--headless=new"); options.addArguments("--window-size=1920,1080"); - const driver = await new Builder().forBrowser("chrome").setChromeOptions(options).build(); + const driver = await new Builder().forBrowser("chromium").setChromeOptions(options).build(); driver.manage().setTimeouts({ implicit: 5000 });