test(github): update webhook sync no-missing-events fixture

Adjust the test app webhook events to only include `push` so it matches
the current expected event set in the no-patch scenario.
This commit is contained in:
Andras Bacsai 2026-03-03 22:21:42 +01:00
parent 5c50ab6162
commit 8f03e5058d

View file

@ -94,7 +94,7 @@ it('auto-fixes missing events by patching github api', function () {
it('does not patch when no events are missing', function () {
$app = setupGithubAppWithKey([
'webhook_events' => ['push', 'installation'],
'webhook_events' => ['push'],
]);
expect($app->missingWebhookEvents())->toBe([]);