File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ export default function() {
1717 return silentExecAndWaitForOutputToMatch ( 'ng' , [ 'serve' ] , webpackGoodRegEx )
1818 // Should trigger a rebuild.
1919 . then ( ( ) => exec ( 'touch' , 'src/main.ts' ) )
20- . then ( ( ) => waitForAnyProcessOutputToMatch ( webpackBadRegEx , 1000 ) )
20+ . then ( ( ) => waitForAnyProcessOutputToMatch ( webpackBadRegEx , 5000 ) )
2121 . then ( ( ) => waitForAnyProcessOutputToMatch ( webpackGoodRegEx , 5000 ) )
2222 . then ( ( ) => appendToFile ( 'src/app/app.component.css' , ':host { color: blue; }' ) )
23- . then ( ( ) => waitForAnyProcessOutputToMatch ( webpackBadRegEx , 1000 ) )
23+ . then ( ( ) => waitForAnyProcessOutputToMatch ( webpackBadRegEx , 5000 ) )
2424 . then ( ( ) => waitForAnyProcessOutputToMatch ( webpackGoodRegEx , 5000 ) )
2525 . then ( ( ) => killAllProcesses ( ) , ( err : any ) => {
2626 killAllProcesses ( ) ;
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export default function() {
2222 // Should trigger a rebuild.
2323 . then ( ( ) => exec ( 'touch' , 'src/main.ts' ) )
2424 . then ( ( ) => waitForAnyProcessOutputToMatch (
25- / w e b p a c k : b u n d l e i s n o w I N V A L I D | w e b p a c k : C o m p i l i n g .../ , 1000 ) )
25+ / w e b p a c k : b u n d l e i s n o w I N V A L I D | w e b p a c k : C o m p i l i n g .../ , 5000 ) )
2626 . then ( ( ) => waitForAnyProcessOutputToMatch (
2727 / 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 ./ , 5000 ) )
2828 // Count the bundles.
@@ -61,7 +61,7 @@ export default function() {
6161 ` ) )
6262 // Should trigger a rebuild with a new bundle.
6363 . then ( ( ) => waitForAnyProcessOutputToMatch (
64- / w e b p a c k : b u n d l e i s n o w I N V A L I D | w e b p a c k : C o m p i l i n g .../ , 1000 ) )
64+ / w e b p a c k : b u n d l e i s n o w I N V A L I D | w e b p a c k : C o m p i l i n g .../ , 5000 ) )
6565 . then ( ( ) => waitForAnyProcessOutputToMatch (
6666 / 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 ./ , 5000 ) )
6767 // Count the bundles.
You can’t perform that action at this time.
0 commit comments