markTestSkipped('Customer tables are missing.'); } $this->seedRequiredData(); } public function test_dry_run_does_not_delete_customers(): void { $customer = $this->createCustomer(); $this->artisan('customers:reset', ['--dry-run' => true]) ->assertSuccessful(); $this->assertDatabaseHas('customers', ['id' => $customer->id]); } }