InstanceSettings::query()->firstOrCreate(['id' => 0])); }); it('schedules RegenerateSslCertJob with onOneServer to prevent multi-server double dispatch', function () { $schedule = app(Schedule::class); $event = collect($schedule->events())->first( fn ($e) => str_contains((string) $e->description, 'RegenerateSslCertJob') ); expect($event)->not->toBeNull(); expect($event->onOneServer)->toBeTrue(); }); it('schedules CleanupStaleMultiplexedConnections on the crons queue', function () { config(['constants.coolify.self_hosted' => false]); Queue::fake(); $schedule = app(Schedule::class); $event = collect($schedule->events())->first( fn ($e) => str_contains((string) $e->description, CleanupStaleMultiplexedConnections::class) ); expect($event)->not->toBeNull(); $event->run(app()); Queue::assertPushedOn('crons', CleanupStaleMultiplexedConnections::class); }); it('schedules every production job with onOneServer', function () { $schedule = app(Schedule::class); $jobEvents = collect($schedule->events())->filter( fn ($e) => str_contains((string) $e->description, 'App\\Jobs\\') ); expect($jobEvents)->not->toBeEmpty(); $jobEvents->each(function ($event) { expect($event->onOneServer)->toBeTrue( "Scheduled job [{$event->description}] is missing ->onOneServer()" ); }); });