feat: e2e test on github actions (#212)

This commit is contained in:
kimatata
2025-04-27 19:22:14 +09:00
committed by GitHub
parent e444193663
commit f781bcc550
2 changed files with 40 additions and 1 deletions

View File

@@ -2,5 +2,5 @@ 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');
await expect(page).toHaveTitle('Open Source Test Case Management System | UnitTCMS');
});