introduce playwright

This commit is contained in:
Takeshi Kimata
2024-07-07 12:12:07 +09:00
parent 82865b5a51
commit 4b63945068
5 changed files with 172 additions and 4 deletions

6
e2e/index.spec.ts Normal file
View File

@@ -0,0 +1,6 @@
import { test, expect } from '@playwright/test';
test('has title', async ({ page }) => {
await page.goto('http://localhost:8000/');
await expect(page).toHaveTitle('Open Source Test Case Management System');
});