feat: engagment notifications
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
|
||||
it('schedules expired auth and stale device token cleanup commands', function () {
|
||||
it('schedules maintenance and engagement commands', function () {
|
||||
Artisan::call('schedule:list', [
|
||||
'--json' => true,
|
||||
]);
|
||||
@@ -13,5 +13,6 @@ it('schedules expired auth and stale device token cleanup commands', function ()
|
||||
expect($commands)
|
||||
->toContain('php artisan sanctum:prune-expired --hours=24')
|
||||
->toContain('php artisan auth:clear-resets')
|
||||
->toContain('php artisan device-tokens:prune-stale --days=180');
|
||||
->toContain('php artisan device-tokens:prune-stale --days=180')
|
||||
->toContain('php artisan notifications:send-engagement-reminders');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user