Merge main into ctate/custom-headers

This commit is contained in:
Chris Tate
2026-01-12 11:57:43 -06:00
13 changed files with 244 additions and 12 deletions
+10
View File
@@ -22,6 +22,16 @@ describe('BrowserManager', () => {
const page = browser.getPage();
expect(page).toBeDefined();
});
it('should reject invalid executablePath', async () => {
const testBrowser = new BrowserManager();
await expect(
testBrowser.launch({
headless: true,
executablePath: '/nonexistent/path/to/chromium',
})
).rejects.toThrow();
});
});
describe('navigation', () => {