Skip to content

Commit

Permalink
use more specific env name
Browse files Browse the repository at this point in the history
  • Loading branch information
Yury Shapkarin committed Jul 4, 2020
1 parent 8821c06 commit 038973d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cypress.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"env": {
"privateKey": "7c6e602a94f30e4ea7edabe4376314f69ba7eaa2f355ecedb339df847b6f0d80575f81ffb0a297b7725dc671da0b1769b1fc5cbe45385c7b5ad1fc2eaf1d609d",
"publicKey": "ak_fUq2NesPXcYZ1CcqBcGC3StpdnQw3iVxMA3YSeCNAwfN4myQk",
"jitsi_url": "test.league.aeternity.org"
"JITSI_DOMAIN": "test.league.aeternity.org"
}
}
2 changes: 1 addition & 1 deletion tests/e2e/specs/conference.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ describe('Conference.vue', () => {
// cut all from iframe src after # symbol
.then((url) => url.substring(0, url.indexOf('#')))
// check if it's equals
.should('be.eq', `https://${Cypress.env('jitsi_url')}/${ROOM_NAME}`);
.should('be.eq', `https://${Cypress.env('JITSI_DOMAIN')}/${ROOM_NAME}`);
});
});

1 comment on commit 038973d

@mradkov
Copy link
Contributor

@mradkov mradkov commented on 038973d Jul 4, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.