Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarhussain committed Jan 30, 2025
1 parent d2a7af0 commit 87ea766
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions configs/vitest.config.base.browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,20 +45,22 @@ export default defineConfig({
connectTimeout: 90_0000,
instances: [
// TODO: Add support for webkit when available
// Invalid types from webdriverio for capabilities
{
browser: "firefox",
maxConcurrency: 1,
capabilities: {
browserVersion: "stable",
},
},
} as never,
// Invalid types from webdriverio for capabilities
{
browser: "chrome",
maxConcurrency: 1,
capabilities: {
browserVersion: "stable",
},
},
} as never,
],
},
},
Expand Down

0 comments on commit 87ea766

Please sign in to comment.