@@ -38,7 +38,7 @@ describe('Basic end-to-end Workflow', function () {
38
38
} ) ;
39
39
40
40
it ( 'Can create new project using `ng new test-project`' , function ( ) {
41
- this . timeout ( 300000 ) ;
41
+ this . timeout ( 420000 ) ;
42
42
43
43
return ng ( [
44
44
'new' ,
@@ -50,14 +50,14 @@ describe('Basic end-to-end Workflow', function () {
50
50
} ) ;
51
51
52
52
it ( 'Can change current working directory to `test-project`' , function ( ) {
53
- this . timeout ( 300000 ) ;
53
+ this . timeout ( 420000 ) ;
54
54
process . chdir ( path . join ( root , 'test-project' ) ) ;
55
55
sh . exec ( 'npm link angular-cli' , { silent : true } ) ;
56
56
expect ( path . basename ( process . cwd ( ) ) ) . to . equal ( 'test-project' ) ;
57
57
} ) ;
58
58
59
59
it ( 'Can run `ng build` in created project' , function ( ) {
60
- this . timeout ( 10000 ) ;
60
+ this . timeout ( 420000 ) ;
61
61
62
62
return ng ( [
63
63
'build' ,
@@ -68,7 +68,7 @@ describe('Basic end-to-end Workflow', function () {
68
68
} ) ;
69
69
70
70
it ( 'Perform `ng test` after initial build' , function ( ) {
71
- this . timeout ( 300000 ) ;
71
+ this . timeout ( 420000 ) ;
72
72
73
73
return ng ( testArgs )
74
74
. then ( function ( result ) {
@@ -92,7 +92,7 @@ describe('Basic end-to-end Workflow', function () {
92
92
} ) ;
93
93
94
94
it ( 'Perform `ng test` after adding a component' , function ( ) {
95
- this . timeout ( 300000 ) ;
95
+ this . timeout ( 420000 ) ;
96
96
97
97
return ng ( testArgs )
98
98
. then ( function ( result ) {
@@ -114,7 +114,7 @@ describe('Basic end-to-end Workflow', function () {
114
114
} ) ;
115
115
116
116
it ( 'Perform `ng test` after adding a service' , function ( ) {
117
- this . timeout ( 300000 ) ;
117
+ this . timeout ( 420000 ) ;
118
118
119
119
return ng ( testArgs )
120
120
. then ( function ( result ) {
@@ -136,7 +136,7 @@ describe('Basic end-to-end Workflow', function () {
136
136
} ) ;
137
137
138
138
it ( 'Perform `ng test` after adding a pipe' , function ( ) {
139
- this . timeout ( 300000 ) ;
139
+ this . timeout ( 420000 ) ;
140
140
141
141
return ng ( testArgs )
142
142
. then ( function ( result ) {
@@ -167,7 +167,7 @@ describe('Basic end-to-end Workflow', function () {
167
167
} ) ;
168
168
169
169
it ( 'Perform `ng test` after adding a route' , function ( ) {
170
- this . timeout ( 300000 ) ;
170
+ this . timeout ( 420000 ) ;
171
171
172
172
return ng ( testArgs )
173
173
. then ( function ( result ) {
0 commit comments