Files
UNIT3D-Community-Edition/tests/Feature/Console/Commands/AutoRecycleFailedLoginsTest.php
2023-07-11 18:28:32 +00:00

15 lines
437 B
PHP

<?php
/**
* @see \App\Console\Commands\AutoRecycleFailedLogins
*/
it('runs successfully', function (): void {
$this->markTestIncomplete('This test case was generated by Shift. When you are ready, remove this line and complete this test case.');
$this->artisan('auto:recycle_failed_logins')
->assertExitCode(0)
->run();
// TODO: perform additional assertions to ensure the command behaved as expected
});