Skip to content

Commit

Permalink
fix(firebase unit): fixed redundant env variable check
Browse files Browse the repository at this point in the history
Removed a redundant env variable check for the Firebase unit tests
  • Loading branch information
ctrlc03 committed Jan 26, 2023
1 parent a9ec1f3 commit a1a5ddc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/actions/test/unit/firebase.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ describe("Firebase", () => {
!process.env.FIREBASE_AUTH_DOMAIN ||
!process.env.FIREBASE_PROJECT_ID ||
!process.env.FIREBASE_MESSAGING_SENDER_ID ||
!process.env.FIREBASE_APP_ID ||
!process.env.FIREBASE_CF_URL_VERIFY_CONTRIBUTION
!process.env.FIREBASE_APP_ID
)
throw new Error("Missing environment variables for Firebase tests.")
})
Expand Down

0 comments on commit a1a5ddc

Please sign in to comment.