From 47291b78079f81432c341b1b1edfcae8f05c619e Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Mon, 23 Mar 2020 16:05:04 +0200 Subject: [PATCH] Tests --- .github/workflows/test.yml | 2 +- lib/.env.dart.example | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cc13923d3..1ca2bbd63 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,7 +29,7 @@ jobs: - run: | cp lib/.env.dart.example lib/.env.dart cp android/app/build.gradle.prod android/app/build.gradle - sed -i -e 's/user/medium/g' lib/.env.dart + sed -i -e 's/user@/medium@/g' lib/.env.dart sed -i -e 's/secret/${{secrets.staging_secret}}/g' lib/.env.dart sed -i -e 's/example.com/${{secrets.staging_url}}/g' lib/.env.dart echo ${{secrets.firebase_ios}} | base64 --decode > ios/Runner/GoogleService-Info.plist diff --git a/lib/.env.dart.example b/lib/.env.dart.example index fc4ff741b..260b8ff03 100644 --- a/lib/.env.dart.example +++ b/lib/.env.dart.example @@ -8,5 +8,5 @@ class Config { static const String TEST_EMAIL = 'user@example.com'; static const String TEST_PASSWORD = 'password'; static const String TEST_URL = 'https://example.com'; - static const String TEST_SECRET = ''; + static const String TEST_SECRET = 'secret'; }