settings->enableWebhook(); event(new CheckoutableCheckedOut( Component::factory()->ramCrucial8()->create(), Asset::factory()->laptopMbp()->create(), User::factory()->superuser()->create(), '' )); Notification::assertNothingSent(); } public function testComponentCheckinDoesNotSendWebhookNotification() { Notification::fake(); $this->settings->enableWebhook(); event(new CheckoutableCheckedIn( Component::factory()->ramCrucial8()->create(), Asset::factory()->laptopMbp()->create(), User::factory()->superuser()->create(), '' )); Notification::assertNothingSent(); } }