Files
Compass/tests/e2e/backend/specs/api/api.test.ts
Martin Braquet ba9b3cfb06 Add pretty formatting (#29)
* Test

* Add pretty formatting

* Fix Tests

* Fix Tests

* Fix Tests

* Fix

* Add pretty formatting fix

* Fix

* Test

* Fix tests

* Clean typeckech

* Add prettier check

* Fix api tsconfig

* Fix api tsconfig

* Fix tsconfig

* Fix

* Fix

* Prettier
2026-02-20 17:32:27 +01:00

10 lines
323 B
TypeScript

import {expect, test} from '../../fixtures/base'
test('Check API health', async ({backendPage}) => {
const responseHealth = await backendPage.api.get('/health')
expect(responseHealth.status()).toBe(200)
// const responseBody = await responseHealth.json()
// console.log(JSON.stringify(responseBody, null, 2));
})