Skip to content

Commit a385425

Browse files
committed
fabbot
1 parent 99337cb commit a385425

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Turbo/tests/BroadcastTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class BroadcastTest extends PantherTestCase
2727
protected function setUp(): void
2828
{
2929
if (!file_exists(__DIR__.'/app/public/build')) {
30-
throw new \Exception(sprintf('Move into %s and execute Encore before running this test.', realpath(__DIR__.'/app')));
30+
throw new \Exception(sprintf('Move into "%s" and execute Encore before running this test.', realpath(__DIR__.'/app')));
3131
}
3232

3333
parent::setUp();
@@ -38,7 +38,7 @@ public function testBroadcastBasic(): void
3838
($client = self::createPantherClient())->request('GET', '/books');
3939

4040
$crawler = $client->submitForm('Submit', ['title' => self::BOOK_TITLE]);
41-
$client->waitForElementToContain('#books div', self::BOOK_TITLE);
41+
// $client->waitForElementToContain('#books div', self::BOOK_TITLE);
4242

4343
$this->assertSelectorWillContain('#books', self::BOOK_TITLE);
4444
if (!preg_match('/\(#(\d+)\)/', $crawler->filter('#books div')->text(), $matches)) {

0 commit comments

Comments
 (0)