7 lines
No EOL
295 B
JavaScript
7 lines
No EOL
295 B
JavaScript
import { test, expect } from '@playwright/test';
|
|
|
|
test('API server starts and returns 200', async () => {
|
|
// Verwende fetch statt Playwrights page-Objekt für einen einfachen HTTP-Test
|
|
const response = await fetch('http://localhost:3000/api/health');
|
|
expect(response.status).toBe(200);
|
|
}); |