File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ export default function() {
7676 throw new Error ( 'Expected webpack to create a new chunk, but did not.' ) ;
7777 }
7878 } )
79- . then ( ( ) => wait ( 1000 ) )
79+ . then ( ( ) => wait ( 2000 ) )
8080 // Change multiple files and check that all of them are invalidated and recompiled.
8181 . then ( ( ) => writeMultipleFiles ( {
8282 'src/app/app.module.ts' : `
@@ -91,6 +91,7 @@ export default function() {
9191 } ) )
9292 . then ( ( ) => waitForAnyProcessOutputToMatch (
9393 / w e b p a c k : b u n d l e i s n o w V A L I D | w e b p a c k : C o m p i l e d s u c c e s s f u l l y ./ , 10000 ) )
94+ . then ( ( ) => wait ( 2000 ) )
9495 . then ( ( ) => request ( 'http://localhost:4200/main.bundle.js' ) )
9596 . then ( ( body ) => {
9697 if ( ! body . match ( / \$ \$ _ E 2 E _ G O L D E N _ V A L U E _ 1 / ) ) {
Original file line number Diff line number Diff line change @@ -69,10 +69,10 @@ export default function () {
6969 protractorGoodRegEx
7070 ) )
7171 // Let app run.
72- . then ( _ => wait ( 1000 ) )
72+ . then ( _ => wait ( 2000 ) )
7373 . then ( _ => appendToFile ( 'src/main.ts' , 'console.log(1);' ) )
7474 . then ( _ => waitForAnyProcessOutputToMatch ( webpackGoodRegEx , 5000 ) )
75- . then ( _ => wait ( 1000 ) )
75+ . then ( _ => wait ( 2000 ) )
7676 . then ( _ => {
7777 if ( liveReloadCount != 2 ) {
7878 throw new Error (
@@ -88,10 +88,10 @@ export default function () {
8888 [ 'e2e' , '--watch' , '--no-live-reload' ] ,
8989 protractorGoodRegEx
9090 ) )
91- . then ( _ => wait ( 1000 ) )
91+ . then ( _ => wait ( 2000 ) )
9292 . then ( _ => appendToFile ( 'src/main.ts' , 'console.log(1);' ) )
9393 . then ( _ => waitForAnyProcessOutputToMatch ( webpackGoodRegEx , 5000 ) )
94- . then ( _ => wait ( 1000 ) )
94+ . then ( _ => wait ( 2000 ) )
9595 . then ( _ => {
9696 if ( liveReloadCount != 1 ) {
9797 throw new Error (
You can’t perform that action at this time.
0 commit comments