@@ -21,21 +21,21 @@ export default function () {
21
21
// Should fail without serving
22
22
. then ( ( ) => expectToFail ( ( ) => ng ( 'e2e' , '--no-serve' ) ) )
23
23
// These should work.
24
- . then ( ( ) => ng ( 'e2e' , '--no-progress' ) )
25
- . then ( ( ) => ng ( 'e2e' , '--prod' , '--no-progress' ) )
24
+ . then ( ( ) => ng ( 'e2e' ) )
25
+ . then ( ( ) => ng ( 'e2e' , '--prod' ) )
26
26
// Should use port in baseUrl
27
- . then ( ( ) => ng ( 'e2e' , '--port' , '4400' , '--no-progress' ) )
27
+ . then ( ( ) => ng ( 'e2e' , '--port' , '4400' ) )
28
28
// Should accept different config file
29
29
. then ( ( ) => moveFile ( './protractor.conf.js' , './renamed-protractor.conf.js' ) )
30
- . then ( ( ) => ng ( 'e2e' , '--config' , './renamed-protractor.conf.js' , '--no-progress' ) )
30
+ . then ( ( ) => ng ( 'e2e' , '--config' , './renamed-protractor.conf.js' ) )
31
31
. then ( ( ) => moveFile ( './renamed-protractor.conf.js' , './protractor.conf.js' ) )
32
32
// Should accept different multiple spec files
33
33
. then ( ( ) => moveFile ( './e2e/app.e2e-spec.ts' , './e2e/renamed-app.e2e-spec.ts' ) )
34
34
. then ( ( ) => copyFile ( './e2e/renamed-app.e2e-spec.ts' , './e2e/another-app.e2e-spec.ts' ) )
35
35
. then ( ( ) => ng ( 'e2e' , '--specs' , './e2e/renamed-app.e2e-spec.ts' ,
36
- '--specs' , './e2e/another-app.e2e-spec.ts' , '--no-progress' ) )
36
+ '--specs' , './e2e/another-app.e2e-spec.ts' ) )
37
37
// Should start up Element Explorer
38
- . then ( ( ) => execAndWaitForOutputToMatch ( 'ng' , [ 'e2e' , '--element-explorer' , '--no-progress' ] ,
38
+ . then ( ( ) => execAndWaitForOutputToMatch ( 'ng' , [ 'e2e' , '--element-explorer' ] ,
39
39
/ E l e m e n t E x p l o r e r / ) )
40
40
. then ( ( ) => killAllProcesses ( ) , ( err : any ) => {
41
41
killAllProcesses ( ) ;
0 commit comments