mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-02-24 17:04:07 +01:00
Initial commit.
This commit is contained in:
commit
6558ee2fc4
92 changed files with 3193 additions and 0 deletions
51
config/protractor.conf.js
Normal file
51
config/protractor.conf.js
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
/**
|
||||
* @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
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue