createOne(); Bus::assertDispatched(SendDiscordNotificationJob::class); }); test('user deleted sends discord notification', function () { $user = User::factory()->createOne(); Feature::activate(FeatureConstants::ALLOW_DISCORD_NOTIFICATIONS); Bus::fake(SendDiscordNotificationJob::class); Event::fakeExcept(UserDeleted::class); $user->delete(); Bus::assertDispatched(SendDiscordNotificationJob::class); }); test('user restored sends discord notification', function () { $user = User::factory()->createOne(); Feature::activate(FeatureConstants::ALLOW_DISCORD_NOTIFICATIONS); Bus::fake(SendDiscordNotificationJob::class); Event::fakeExcept(UserRestored::class); $user->restore(); Bus::assertDispatched(SendDiscordNotificationJob::class); }); test('user updated sends discord notification', function () { $user = User::factory()->createOne(); Feature::activate(FeatureConstants::ALLOW_DISCORD_NOTIFICATIONS); Bus::fake(SendDiscordNotificationJob::class); Event::fakeExcept(UserUpdated::class); $changes = User::factory()->makeOne(); $user->fill($changes->getAttributes()); $user->save(); Bus::assertDispatched(SendDiscordNotificationJob::class); });