Merge pull request #40 from penpot/fix/Settings-UI-THEME-1677

Fixes goToAccountPage to read the fomain from env variables
This commit is contained in:
tdelatorre 2024-06-25 07:59:46 +02:00 committed by GitHub
commit 44676ecf25
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -60,7 +60,8 @@ exports.ProfilePage = class ProfilePage extends BasePage {
}
async goToAccountPage() {
await this.page.goto('https://design.penpot.dev/#/settings/profile');
const baseUrl = process.env.BASE_URL;
await this.page.goto(baseUrl.concat('#/settings/profile'));
}
async openGiveFeedbackPage() {