Skip to content

Commit

Permalink
Sleep one second after each test
Browse files Browse the repository at this point in the history
Hoping this will resolve the false negatives that sometimes happen
  • Loading branch information
caendesilva committed Aug 11, 2022
1 parent 1ce0ea3 commit 49e886d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/Browser/HighLevelViewTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ class HighLevelViewTest extends DuskTestCase
{
public $mockConsoleOutput = false;

protected function tearDown(): void
{
parent::tearDown();
sleep(1);
}

public function test_welcome_homepage()
{
$this->browse(function (Browser $browser) {
Expand Down

0 comments on commit 49e886d

Please sign in to comment.