mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
24 lines
440 B
PHP
24 lines
440 B
PHP
<?php
|
|
|
|
namespace Tests\Browser;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
use Laravel\Dusk\Browser;
|
|
use Tests\DuskTestCase;
|
|
|
|
class CreateBooking extends DuskTestCase
|
|
{
|
|
/**
|
|
* A Dusk test example.
|
|
*
|
|
* @test
|
|
*/
|
|
public function testCreateBooking()
|
|
{
|
|
$this->browse(function (Browser $browser) {
|
|
$browser->visit('/')
|
|
->assertSee('Laravel');
|
|
});
|
|
}
|
|
}
|