Skip to content
This repository has been archived by the owner on Apr 27, 2023. It is now read-only.

Commit

Permalink
fix(#27): requested changes to test time
Browse files Browse the repository at this point in the history
  • Loading branch information
keegan authored and Alex committed Apr 5, 2021
1 parent c736118 commit 0440f0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Browser/BookingsPageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public function testUserCanViewABookingRequestStatus()
$browser->loginAs(User::first());
$browser->visit('/bookings')
->clickLink("View", 'button')
->pause(5000);
->pause(250);
$browser->assertSee('Booking Request Status');
});
}
Expand All @@ -126,7 +126,7 @@ public function testUserCanEditABooking()
$browser->loginAs(User::first());
$browser->visit('/bookings')
->clickLink("Edit", 'button')
->pause(5000);
->pause(250);
$browser->assertSee('Submit A Booking Request')
->type('@title', 'title')
->type('@type', 'type')
Expand All @@ -135,7 +135,7 @@ public function testUserCanEditABooking()
->type('@numberAttending', '2');
$browser->check('div > main > form > div:nth-child(4) > div > div > input');
$browser->press('SUBMIT')
->pause(5000)
->pause(800)
->assertSee('This booking cannot be submitted');
});
}
Expand Down

0 comments on commit 0440f0f

Please sign in to comment.