I am using WebdriverIO to run my tests, however I can see a lot of tests getting cancelled.
Sharing my config file here:
exports.config = {
user: '*****',
key: '*******',
path: '/wd/hub',
hostname: 'hub.lambdatest.com',
port: 80,
specs: ['e2e/specs/**/*.js'],
exclude: [
// 'path/to/excluded/files'
],
specFileRetries: 0,
maxInstances: 10,
commonCapabilities: {
build: 'DataCollector UI V2 - CI',
name: 'Parallel Tests',
video: true,
network: false,
console: false,
visual: false,
tunnel: true
},
capabilities: [
{
browserName: 'chrome',
version: '86.0',
platform: 'Windows 10'
},
],
framework: 'mocha',
reporters: ['spec'],
mochaOpts: {
timeout: 10000,
}