mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 23:40:14 +01:00
51 lines
1 KiB
JavaScript
51 lines
1 KiB
JavaScript
/**
|
|
* @author: @AngularClass
|
|
*/
|
|
|
|
require('ts-node/register');
|
|
var helpers = require('./helpers');
|
|
|
|
exports.config = {
|
|
baseUrl: 'http://localhost:3000/',
|
|
|
|
// use `npm run e2e`
|
|
specs: [
|
|
helpers.root('src/**/**.e2e.ts'),
|
|
helpers.root('src/**/*.e2e.ts')
|
|
],
|
|
exclude: [],
|
|
|
|
framework: 'jasmine2',
|
|
|
|
allScriptsTimeout: 110000,
|
|
|
|
jasmineNodeOpts: {
|
|
showTiming: true,
|
|
showColors: true,
|
|
isVerbose: false,
|
|
includeStackTrace: false,
|
|
defaultTimeoutInterval: 400000
|
|
},
|
|
directConnect: true,
|
|
|
|
capabilities: {
|
|
'browserName': 'chrome',
|
|
'chromeOptions': {
|
|
'args': ['show-fps-counter=true']
|
|
}
|
|
},
|
|
|
|
onPrepare: function() {
|
|
browser.ignoreSynchronization = true;
|
|
},
|
|
|
|
seleniumServerJar: 'node_modules/protractor/selenium/selenium-server-standalone-2.52.0.jar',
|
|
|
|
/**
|
|
* Angular 2 configuration
|
|
*
|
|
* useAllAngular2AppRoots: tells Protractor to wait for any angular2 apps on the page instead of just the one matching
|
|
* `rootEl`
|
|
*/
|
|
useAllAngular2AppRoots: true
|
|
};
|