8 lines
187 B
PHP
8 lines
187 B
PHP
<?php
|
|
|
|
it('can access the dishes page', function () {
|
|
loginAndGoToDishes()
|
|
->assertPathIs('/dishes')
|
|
->assertSee('MANAGE DISHES')
|
|
->assertSee('Add Dish');
|
|
});
|