dishplanner/tests/Browser/Dishes/DishDeletionSafetyTest.php

13 lines
338 B
PHP

<?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');
});