Files
pp-tcms/e2e/index.spec.ts
2025-04-27 19:22:14 +09:00

7 lines
227 B
TypeScript

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 | UnitTCMS');
});