dishplanner/tests/Browser/Dishes/DishDeletionSafetyTest.php

14 lines
338 B
PHP
Raw Permalink Normal View History

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