Skip to content

Commit f68c86a

Browse files
devversionjelbourn
authored andcommitted
build: reduce e2e parallel instances (#12724)
Reduces the protractor parallel instances because it seems to be flaky if we run a lot of processes inside of the Travis.
1 parent 9a1f5eb commit f68c86a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/protractor.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ exports.config = {
4242
args: process.env['TRAVIS'] ? ['--no-sandbox'] : [],
4343
},
4444

45-
// Enables concurrent testing in the Webdriver. Currently runs five e2e files in parallel.
45+
// Enables concurrent testing in the Webdriver. Currently runs three e2e files in parallel.
4646
shardTestFiles: true,
47-
maxInstances: 5,
47+
maxInstances: 3,
4848
}
4949
};

0 commit comments

Comments
 (0)