Skip to content

Commit 4602a46

Browse files
committed
Add test that makes sure the app switches to the out of time view
1 parent 15b5cb5 commit 4602a46

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

gui/test/e2e/mocked/expired-account-error-view.spec.ts

+15-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,16 @@ import { expect, test } from '@playwright/test';
44
import { IAccountData } from '../../../src/shared/daemon-rpc-types';
55
import { getBackgroundColor } from '../utils';
66
import { colors } from '../../../src/config.json';
7+
import { RoutePath } from '../../../src/renderer/lib/routes';
78

89
let page: Page;
910
let util: MockedTestUtils;
1011

11-
test.beforeAll(async () => {
12+
test.beforeEach(async () => {
1213
({ page, util } = await startMockedApp());
1314
});
1415

15-
test.afterAll(async () => {
16+
test.afterEach(async () => {
1617
await page.close();
1718
});
1819

@@ -31,3 +32,15 @@ test('App should show Expired Account Error View', async () => {
3132
await expect(redeemVoucherButton).toBeVisible();
3233
expect(await getBackgroundColor(redeemVoucherButton)).toBe(colors.green);
3334
});
35+
36+
test('App should show out of time view after running out of time', async () => {
37+
const expiryDate = new Date();
38+
expiryDate.setSeconds(expiryDate.getSeconds() + 2);
39+
40+
expect(await util.waitForNavigation(async () => {
41+
await util.sendMockIpcResponse<IAccountData>({
42+
channel: 'account-',
43+
response: { expiry: expiryDate.toISOString() },
44+
});
45+
})).toEqual(RoutePath.expired);
46+
});

0 commit comments

Comments
 (0)