Skip to content

Commit

Permalink
Reset timeouts after test
Browse files Browse the repository at this point in the history
  • Loading branch information
uuf6429 committed Nov 3, 2024
1 parent 5441293 commit 0599ae5
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/Custom/TimeoutTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@

class TimeoutTest extends TestCase
{
protected function tearDown(): void
{
$this->driver->setTimeouts([
'script' => 30000,
'page' => 300000,
'implicit' => 0,
]);

parent::tearDown();
}

public function testInvalidTimeoutSettingThrowsException(): void
{
$this->driver->start();
Expand Down

0 comments on commit 0599ae5

Please sign in to comment.