mirror of
https://github.com/zhigang1992/xverse-web-extension.git
synced 2026-01-12 09:43:44 +08:00
11 lines
356 B
TypeScript
11 lines
356 B
TypeScript
import { test } from '../fixtures/base';
|
|
import Landing from '../pages/landing';
|
|
|
|
test.describe('healthCheck', () => {
|
|
test('healthCheck #smoketest', async ({ page, extensionId }) => {
|
|
await page.goto(`chrome-extension://${extensionId}/options.html#/landing`);
|
|
const landingPage = new Landing(page);
|
|
await landingPage.initialize();
|
|
});
|
|
});
|