Skip to content

Commit 0c06867

Browse files
committed
test: Change Playwright dummy test to check for 500 status
1 parent 813b443 commit 0c06867

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Test/Playwright/default.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { test, expect } from '@playwright/test';
22

33
test('basic test', async ({ page }) => {
4-
await page.goto('/');
5-
await expect(page).toHaveTitle(/Home page/);
4+
const response = await page.goto('/loki_components/index/html');
5+
await expect(response.status()).toBe(500);
66
});

0 commit comments

Comments
 (0)