@@ -36,10 +36,10 @@ protected function setUp(): void
3636 public function testBroadcastBasic (): void
3737 {
3838 $ client = self ::createPantherClient ();
39- $ client ->wait ();
39+ $ client ->wait (5000 );
4040
4141 $ client ->request ('GET ' , '/books ' );
42- $ client ->wait ();
42+ $ client ->wait (5000 );
4343
4444 $ crawler = $ client ->submitForm ('Submit ' , ['title ' => self ::BOOK_TITLE ]);
4545 // $client->waitForElementToContain('#books div', self::BOOK_TITLE);
@@ -59,10 +59,10 @@ public function testBroadcastBasic(): void
5959 public function testExpressionLanguageBroadcast (): void
6060 {
6161 $ client = self ::createPantherClient ();
62- $ client ->wait ();
62+ $ client ->wait (5000 );
6363
6464 $ client ->request ('GET ' , '/artists ' );
65- $ client ->wait ();
65+ $ client ->wait (5000 );
6666
6767 $ client ->submitForm ('Submit ' , ['name ' => self ::ARTIST_NAME_1 ]);
6868 $ client ->waitForElementToContain ('#artists div:nth-child(1) ' , self ::ARTIST_NAME_1 , 5 );
@@ -81,14 +81,14 @@ public function testExpressionLanguageBroadcast(): void
8181 $ artist2Id = $ matches [1 ][1 ];
8282
8383 $ clientArtist1 = self ::createAdditionalPantherClient ();
84- $ clientArtist1 ->wait ();
84+ $ clientArtist1 ->wait (5000 );
8585 $ clientArtist1 ->request ('GET ' , '/artists/ ' .$ artist1Id );
86- $ clientArtist1 ->wait ();
86+ $ clientArtist1 ->wait (5000 );
8787
8888 $ clientArtist2 = self ::createAdditionalPantherClient ();
89- $ clientArtist2 ->wait ();
89+ $ clientArtist2 ->wait (5000 );
9090 $ clientArtist2 ->request ('GET ' , '/artists/ ' .$ artist2Id );
91- $ clientArtist2 ->wait ();
91+ $ clientArtist2 ->wait (5000 );
9292
9393 $ client ->request ('GET ' , '/songs ' );
9494
@@ -108,11 +108,11 @@ public function testExpressionLanguageBroadcast(): void
108108 public function testBroadcastWithProxy (): void
109109 {
110110 $ client = self ::createPantherClient ();
111- $ client ->wait ();
111+ $ client ->wait (5000 );
112112
113113 // testing that Artist is updated, even though it's saved as Proxy
114114 $ client ->request ('GET ' , '/artistFromSong ' );
115- $ client ->wait ();
115+ $ client ->wait (5000 );
116116
117117 // submit first time to create the artist
118118 $ client ->submitForm ('Submit ' );
0 commit comments