Skip to content

Commit

Permalink
use https in CI to fix the clipboard test
Browse files Browse the repository at this point in the history
  • Loading branch information
RFSH committed Oct 28, 2023
1 parent b6ef81b commit 6bc8394
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/playwright/setup/playwright.configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ const getConfig = (options: TestOptions) => {

if (process.env.CI) {
const hostname = os.hostname();
process.env.ERMREST_URL = `http://${hostname}/ermrest`;
process.env.CHAISE_BASE_URL = `http://${hostname}/chaise`;
process.env.ERMREST_URL = `https://${hostname}/ermrest`;
process.env.CHAISE_BASE_URL = `https://${hostname}/chaise`;
} else if (!process.env.ERMREST_URL || !process.env.CHAISE_BASE_URL) {
throw new Error('ERMREST_URL and CHAISE_BASE_URL env variables are required.');
}
Expand Down

0 comments on commit 6bc8394

Please sign in to comment.