ci: run legacy e2e tests in parallel (#27937)

PR Close #27937
This commit is contained in:
Paul Gschwendtner 2019-01-05 19:43:55 +01:00 committed by Kara Erickson
parent 7de7b7a16a
commit 17291e66a0
2 changed files with 11 additions and 1 deletions

View File

@ -13,6 +13,10 @@ require('./dist/all/e2e_util/e2e_util').readCommandLine();
var BROWSER_OPTIONS = {
LocalChrome: {
'browserName': 'chrome',
// Enables concurrent testing. Currently runs four e2e files in parallel.
shardTestFiles: true,
maxInstances: 4,
},
ChromeOnTravis: {
browserName: 'chrome',

View File

@ -14,7 +14,13 @@ require('reflect-metadata');
Error.stackTraceLimit = 9999;
var BROWSER_OPTIONS = {
LocalChrome: {'browserName': 'chrome'},
LocalChrome: {
'browserName': 'chrome',
// Enables concurrent testing. Currently runs four e2e files in parallel.
shardTestFiles: true,
maxInstances: 4,
},
ChromeOnTravis: {
browserName: 'chrome',
chromeOptions: {