Browse Source

test(e2e): disable test parallelism

Jonas Gloning 1 year ago
parent
commit
b236e358ab
1 changed files with 4 additions and 0 deletions
  1. 4 0
      e2e/wdio.bstack.conf.ts

+ 4 - 0
e2e/wdio.bstack.conf.ts

@@ -3,6 +3,10 @@ import { config as sharedConfig } from "./wdio.shared.conf.js";
 export const config: WebdriverIO.Config = {
 	...sharedConfig,
 	...{
+		/**
+		 * Only allow one instance. We are limited to 5 parallel tests on BrowserStack.
+		 */
+		maxInstances: 1,
 		user: process.env.BROWSERSTACK_USERNAME,
 		key: process.env.BROWSERSTACK_ACCESS_KEY,
 		hostname: "hub.browserstack.com",