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
@@ -38,8 +38,6 @@ it('returns a strava authorization url for the api callback', function () {
});
it('redirects the strava web callback to the mobile app', function () {
config()->set('app.mobile_scheme', 'dailymeal');
$query = http_build_query([
'code' => 'authorization-code',
'scope' => 'read activity:read',
@@ -48,7 +46,7 @@ it('redirects the strava web callback to the mobile app', function () {
$this
->get("/strava/callback?{$query}")
->assertRedirect("dailymeal://strava/callback?{$query}");
->assertRedirect("bowli://strava/callback?{$query}");
});
it('stores strava tokens from an authorization code', function () {