adds playwright tests
This commit is contained in:
8
web/tests/playwright/e2e/index/index.spec.ts
Normal file
8
web/tests/playwright/e2e/index/index.spec.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import { expect, test } from '@playwright/test';
|
||||
import { IndexPage } from '../../pages/index_page';
|
||||
|
||||
test('index page does not show error', async ({ page }) => {
|
||||
const indexPage = new IndexPage(page);
|
||||
await indexPage.goto()
|
||||
await indexPage.hasNoError()
|
||||
});
|
||||
Reference in New Issue
Block a user