mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-21 06:33:30 +00:00
6217546894
This also updates code to use the default import syntax instead of `import * as` when the imported module exposes a default. This is needed with the latest typescript version. Change-type: patch
11 lines
352 B
TypeScript
11 lines
352 B
TypeScript
import 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);
|
|
});
|
|
});
|