File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ const path = require('path');
4242 assert . match ( cli . output , / U s e ` r u n ` t o s t a r t t h e a p p a g a i n / ) ;
4343 } )
4444 . then ( ( ) => cli . command ( 'run' ) )
45+ . then ( ( ) => cli . waitFor ( / o k \n / ) )
4546 . then ( ( ) => cli . waitForInitialBreak ( ) )
4647 . then ( ( ) => cli . waitForPrompt ( ) )
4748 . then ( ( ) => {
@@ -58,9 +59,9 @@ const path = require('path');
5859 ) ;
5960 } )
6061 . then ( ( ) => cli . command ( 'restart' ) )
61- . then ( ( ) => cli . waitFor ( / D e b u g g e r a t t a c h e d \. / ) )
62- . then ( ( ) => cli . waitForPrompt ( ) )
62+ . then ( ( ) => cli . waitFor ( / o k \n / ) )
6363 . then ( ( ) => cli . waitForInitialBreak ( ) )
64+ . then ( ( ) => cli . waitForPrompt ( ) )
6465 . then ( ( ) => {
6566 assert . deepStrictEqual (
6667 cli . breakInfo ,
@@ -74,6 +75,7 @@ const path = require('path');
7475 assert . match ( cli . output , / U s e ` r u n ` t o s t a r t t h e a p p a g a i n / ) ;
7576 } )
7677 . then ( ( ) => cli . command ( 'run' ) )
78+ . then ( ( ) => cli . waitFor ( / o k \n / ) )
7779 . then ( ( ) => cli . waitForInitialBreak ( ) )
7880 . then ( ( ) => cli . waitForPrompt ( ) )
7981 . then ( ( ) => {
You can’t perform that action at this time.
0 commit comments