Count chrome driver mismatch as failure

This commit is contained in:
Ajay
2025-06-23 18:41:25 -04:00
parent 950b5dd6c4
commit 9ee80cca99

View File

@@ -12,6 +12,11 @@ test("Selenium Chrome test", async () => {
console.warn("A browser is probably not installed, skipping selenium tests");
console.warn(e);
if (String(e).includes("This version of ChromeDriver only supports")) {
// Count as failure
throw e;
}
return;
}