6 lines
No EOL
213 B
JavaScript
6 lines
No EOL
213 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');
|
|
await expect(page.status()).toBe(200);
|
|
}); |