refactor: hardcode Bowli mobile scheme
CI / 🧪 Tests Laravel (push) Successful in 2m8s
CI / 🐳 Build & Push Image (push) Successful in 31s

This commit is contained in:
2026-08-11 16:20:27 +02:00
parent 2f2bac9d3a
commit bd1b4bba20
7 changed files with 11 additions and 33 deletions
+1 -3
View File
@@ -43,8 +43,6 @@ it('creates one review per user for a meal post', function () {
});
it('sends a push notification to the meal owner when another user comments on their meal', function () {
config()->set('app.mobile_scheme', 'dailymeal');
Http::fake([
'https://exp.host/*' => Http::response([
'data' => [
@@ -79,7 +77,7 @@ it('sends a push notification to the meal owner when another user comments on th
'sound' => 'default',
'channelId' => 'default',
'data' => [
'url' => "dailymeal://meals/{$mealPost->id}",
'url' => "bowli://meals/{$mealPost->id}",
],
],
]);