7 lines
238 B
JavaScript
7 lines
238 B
JavaScript
|
|
import { test, expect } from '@playwright/test';
|
||
|
|
|
||
|
|
test('API server starts and returns 200', async ({ page }) => {
|
||
|
|
await page.goto('http://localhost:3000/api/health');
|
||
|
|
const status = await page.status();
|
||
|
|
expect(status).toBe(200);
|
||
|
|
});
|