Skip to content
Merged
Changes from 2 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);
Copy link
Contributor

Choose a reason for hiding this comment

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

I don't think it is the best solution to fix this failing assertion

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I'm open to suggestions! We can chat about this in our sync later today.

const currentUrl = await browser.getUrl();
expect(currentUrl).to.contain(EXPECTED_MIDNIGHT_URL);
}
Expand Down
Loading