helpyourneighbour/backend/scripts/integration-test.mjs

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