@@ -49,7 +49,7 @@ describe('Basic end-to-end Workflow', function () {
4949 it ( 'Can create new project using `ng new test-project`' , function ( ) {
5050 this . timeout ( 4200000 ) ;
5151
52- return ng ( [ 'new' , 'test-project' , '--link-cli=true' ] ) . then ( function ( ) {
52+ return ng ( [ 'new' , 'test-project' ] ) . then ( function ( ) {
5353 expect ( existsSync ( path . join ( root , 'test-project' ) ) ) ;
5454 } ) ;
5555 } ) ;
@@ -118,7 +118,7 @@ describe('Basic end-to-end Workflow', function () {
118118 this . timeout ( 240000 ) ;
119119
120120 function executor ( resolve , reject ) {
121- child_process . exec ( ` ${ ngBin } e2e` , ( error , stdout , stderr ) => {
121+ child_process . exec ( 'ng e2e' , ( error , stdout , stderr ) => {
122122 if ( error !== null ) {
123123 resolve ( stderr ) ;
124124 } else {
@@ -146,7 +146,7 @@ describe('Basic end-to-end Workflow', function () {
146146 serveProcess . stdout . on ( 'data' , ( data ) => {
147147 if ( / B u i l d s u c c e s s f u l / . test ( data ) && ! startedProtractor ) {
148148 startedProtractor = true ;
149- child_process . exec ( ` ${ ngBin } e2e` , ( error , stdout , stderr ) => {
149+ child_process . exec ( 'ng e2e' , ( error , stdout , stderr ) => {
150150 if ( error !== null ) {
151151 reject ( stderr )
152152 } else {
0 commit comments