mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-22 15:02:23 +00:00
46fa7321c0
This allows to test that the supervisor build actually runs and opens up the possibility of running more exhaustive API tests against a working supervisor. Change-type: patch
11 lines
357 B
TypeScript
11 lines
357 B
TypeScript
import * as request from 'supertest';
|
|
|
|
const BALENA_SUPERVISOR_ADDRESS =
|
|
process.env.BALENA_SUPERVISOR_ADDRESS || 'http://balena-supervisor:48484';
|
|
|
|
describe('supervisor app', () => {
|
|
it('the supervisor app runs and the API responds with a healthy status', async () => {
|
|
await request(BALENA_SUPERVISOR_ADDRESS).get('/v1/healthy').expect(200);
|
|
});
|
|
});
|