File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ export default function() {
17
17
return silentExecAndWaitForOutputToMatch ( 'ng' , [ 'serve' ] , webpackGoodRegEx )
18
18
// Should trigger a rebuild.
19
19
. then ( ( ) => exec ( 'touch' , 'src/main.ts' ) )
20
- . then ( ( ) => waitForAnyProcessOutputToMatch ( webpackBadRegEx , 1000 ) )
20
+ . then ( ( ) => waitForAnyProcessOutputToMatch ( webpackBadRegEx , 5000 ) )
21
21
. then ( ( ) => waitForAnyProcessOutputToMatch ( webpackGoodRegEx , 5000 ) )
22
22
. then ( ( ) => appendToFile ( 'src/app/app.component.css' , ':host { color: blue; }' ) )
23
- . then ( ( ) => waitForAnyProcessOutputToMatch ( webpackBadRegEx , 1000 ) )
23
+ . then ( ( ) => waitForAnyProcessOutputToMatch ( webpackBadRegEx , 5000 ) )
24
24
. then ( ( ) => waitForAnyProcessOutputToMatch ( webpackGoodRegEx , 5000 ) )
25
25
. then ( ( ) => killAllProcesses ( ) , ( err : any ) => {
26
26
killAllProcesses ( ) ;
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export default function() {
22
22
// Should trigger a rebuild.
23
23
. then ( ( ) => exec ( 'touch' , 'src/main.ts' ) )
24
24
. 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 ) )
26
26
. then ( ( ) => waitForAnyProcessOutputToMatch (
27
27
/ 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 ) )
28
28
// Count the bundles.
@@ -61,7 +61,7 @@ export default function() {
61
61
` ) )
62
62
// Should trigger a rebuild with a new bundle.
63
63
. 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 ) )
65
65
. then ( ( ) => waitForAnyProcessOutputToMatch (
66
66
/ 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 ) )
67
67
// Count the bundles.
You can’t perform that action at this time.
0 commit comments