Skip to content

Commit

Permalink
fixes to cts + cypress tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vbhayden authored Mar 21, 2024
1 parent 9535116 commit c08eb88
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,13 @@ jobs:
LRS_PASSWORD: ${{ secrets.ADLNET_STAGING_LRS_PASSWORD }}
LRS_HOST_URL: ${{ secrets.ADLNET_STAGING_LRS_HOST_URL }}
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Cypress run
uses: cypress-io/github-action@v6
with:
working-directory: tests/cypress
working-directory: ./tests/cypress

conformance-testing:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions tests/cypress/e2e/login.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ describe("Logged-In Behavior", () => {

it("Allows Admin to Log In.", () => {

let adminName = Cypress.env("LRS_ADMIN_NAME");
let adminPass = Cypress.env("LRS_ADMIN_PASS");
let adminName = Cypress.env("LRS_USERNAME");
let adminPass = Cypress.env("LRS_PASSWORD");

cy.get('#menuLink1').click();

Expand Down

0 comments on commit c08eb88

Please sign in to comment.