helpyourneighbour/backend/tests/integration-test.spec.js

7 lines
238 B
JavaScript
Raw Normal View History

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