Skip to content

Commit

Permalink
fix var names
Browse files Browse the repository at this point in the history
  • Loading branch information
Amy Chen committed Nov 21, 2024
1 parent b61b76d commit 7b7774c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions portal/static/js/__tests__/loadPatientHomePage.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import puppeteer from "puppeteer";
// const homepage = "https://eproms-test.cirg.washington.edu";
// const testEmail = atob("YWNoZW4yNDAxK3Rlc3QxMTFAZ21haWwuY29t");
// const testPassword = atob("RWxlYW5vcjI=");
const testEmail = process.env.testEmail;
const testPassword = process.env.testPassword;
const testEmail = process.env.testPatientEmail;
const testPassword = process.env.testPatientPassword;
const homepage = process.env.homePageURL;

describe("Login in to Patient Home Page", () => {
Expand Down

0 comments on commit 7b7774c

Please sign in to comment.