@@ -75,7 +75,7 @@ func TestWriteEnv(t *testing.T) {
75
75
assert .
Equal (
t ,
`POSTGRES_URL="postgresql://admin:[email protected] :6543/postgres?connect_timeout=10"
76
76
SUPABASE_ANON_KEY="anonkey"
77
77
SUPABASE_SERVICE_ROLE_KEY="servicekey"
78
- SUPABASE_URL="testing.supabase.co"` , string (env ))
78
+ SUPABASE_URL="https:// testing.supabase.co"` , string (env ))
79
79
})
80
80
81
81
t .Run ("merges with .env.example" , func (t * testing.T ) {
@@ -106,7 +106,7 @@ SUPABASE_URL="testing.supabase.co"`, string(env))
106
106
env , err := afero .ReadFile (fsys , ".env" )
107
107
assert .NoError (t , err )
108
108
assert .Equal (t , `NEXT_PUBLIC_SUPABASE_ANON_KEY="anonkey"
109
- NEXT_PUBLIC_SUPABASE_URL="testing.supabase.co"
109
+ NEXT_PUBLIC_SUPABASE_URL="https:// testing.supabase.co"
110
110
POSTGRES_DATABASE="postgres"
111
111
POSTGRES_HOST="db.supabase.co"
112
112
POSTGRES_PASSWORD="password"
@@ -116,7 +116,7 @@ POSTGRES_URL_NON_POOLING="postgresql://admin:
[email protected] :5432/postgr
116
116
POSTGRES_USER="admin"
117
117
SUPABASE_ANON_KEY="anonkey"
118
118
SUPABASE_SERVICE_ROLE_KEY="servicekey"
119
- SUPABASE_URL="testing.supabase.co"
119
+ SUPABASE_URL="https:// testing.supabase.co"
120
120
no_match="example"` , string (env ))
121
121
})
122
122
0 commit comments