test: fix broken ledger test

This commit is contained in:
kyranjamie
2023-08-02 11:23:59 +02:00
committed by kyranjamie
parent 921406d717
commit 7fbb65a95d

View File

@@ -17,6 +17,7 @@ test.describe('App with Ledger', () => {
test('that you can navigate to activity page', async ({ homePage }) => {
await homePage.clickActivityTab();
const noActivityText = homePage.page.getByText('No activity yet');
await test.expect(noActivityText).toBeVisible();
// Account has activity to make sure we don't see label
await test.expect(noActivityText).not.toBeVisible();
});
});