dishplanner/tests/Browser/Dishes/DeleteDishTest.php

13 lines
332 B
PHP

<?php
use App\Models\Dish;
it('exposes the delete feature', function () {
$planner = createPlanner();
Dish::factory()->create(['planner_id' => $planner->id, 'name' => 'Test Dish']);
loginAs($planner, '/dishes')
->assertPathIs('/dishes')
->assertSee('MANAGE DISHES')
->assertSee('Delete');
});