File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed
Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,6 @@ testem.log
6161/typings
6262
6363# e2e
64- /e2e /* .js
6564/e2e /* .map
6665
6766# System Files
Original file line number Diff line number Diff line change 1+ // Protractor configuration file, see link for more information
2+ // https://github.com/angular/protractor/blob/master/lib/config.ts
3+
4+ const { SpecReporter } = require ( 'jasmine-spec-reporter' ) ;
5+
6+ exports . config = {
7+ allScriptsTimeout : 11000 ,
8+ specs : [
9+ './src/**/*.e2e-spec.ts'
10+ ] ,
11+ capabilities : {
12+ 'browserName' : 'chrome'
13+ } ,
14+ directConnect : true ,
15+ baseUrl : 'http://localhost:4200/' ,
16+ framework : 'jasmine' ,
17+ jasmineNodeOpts : {
18+ showColors : true ,
19+ defaultTimeoutInterval : 30000 ,
20+ print : function ( ) { }
21+ } ,
22+ onPrepare ( ) {
23+ require ( 'ts-node' ) . register ( {
24+ project : require ( 'path' ) . join ( __dirname , './tsconfig.e2e.json' )
25+ } ) ;
26+ jasmine . getEnv ( ) . addReporter ( new SpecReporter ( { spec : { displayStacktrace : true } } ) ) ;
27+ }
28+ } ;
You can’t perform that action at this time.
0 commit comments