2016-10-04 23:39:20 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-08-30 12:29:39 -04:00
|
|
|
// Make sure that the command line is read as the first thing
|
|
|
|
// as this could exit node if the help script should be printed.
|
2019-02-11 15:09:37 -05:00
|
|
|
require('angular/modules/e2e_util/perf_util').readCommandLine();
|
2016-08-30 12:29:39 -04:00
|
|
|
|
2019-01-08 06:41:24 -05:00
|
|
|
const CHROME_OPTIONS = {
|
2018-10-25 21:10:31 -04:00
|
|
|
'args': ['--js-flags=--expose-gc', '--no-sandbox', '--headless', '--disable-dev-shm-usage'],
|
2016-08-30 12:29:39 -04:00
|
|
|
'perfLoggingPrefs': {
|
2018-10-19 17:28:47 -04:00
|
|
|
'traceCategories':
|
|
|
|
'v8,blink.console,devtools.timeline,disabled-by-default-devtools.timeline,blink.user_timing'
|
2016-08-30 12:29:39 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-11 15:09:37 -05:00
|
|
|
exports.config = {
|
2019-01-08 06:41:24 -05:00
|
|
|
onPrepare: function() { beforeEach(function() { browser.ignoreSynchronization = false; }); },
|
|
|
|
restartBrowserBetweenTests: true,
|
|
|
|
allScriptsTimeout: 11000,
|
|
|
|
capabilities: {
|
2016-08-30 12:29:39 -04:00
|
|
|
'browserName': 'chrome',
|
|
|
|
chromeOptions: CHROME_OPTIONS,
|
|
|
|
loggingPrefs: {
|
|
|
|
performance: 'ALL',
|
2016-10-04 23:39:20 -04:00
|
|
|
browser: 'ALL',
|
2016-08-30 12:29:39 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
directConnect: true,
|
|
|
|
framework: 'jasmine2',
|
|
|
|
jasmineNodeOpts: {
|
|
|
|
showColors: true,
|
2019-05-14 04:03:21 -04:00
|
|
|
defaultTimeoutInterval: 90000,
|
2016-10-04 23:39:20 -04:00
|
|
|
print: function(msg) { console.log(msg); },
|
2016-08-30 12:29:39 -04:00
|
|
|
},
|
|
|
|
useAllAngular2AppRoots: true
|
|
|
|
};
|