Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/e2e-tests/src/assert/midnightBannerAssert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class MidnightBannerAssert {

async assertSeeMidnightURL() {
const EXPECTED_MIDNIGHT_URL = 'https://www.midnight.gd';
await browser.url(EXPECTED_MIDNIGHT_URL);
const currentUrl = await browser.getUrl();
expect(currentUrl).to.contain(EXPECTED_MIDNIGHT_URL);
}
Expand Down
Loading