Files
pp-tcms/e2e/index.spec.ts
2024-07-07 12:12:07 +09:00

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