mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-01-12 07:52:55 +00:00
758f3caa48
Change-type: patch
15 lines
468 B
TypeScript
15 lines
468 B
TypeScript
import ChaiConfig = require('./lib/chai-config');
|
|
import prepare = require('./lib/prepare');
|
|
|
|
const { expect } = ChaiConfig;
|
|
|
|
import constants = require('../src/lib/constants');
|
|
|
|
describe('constants', function () {
|
|
before(() => prepare());
|
|
it('has the correct configJsonPathOnHost', () =>
|
|
expect(constants.configJsonPathOnHost).to.equal('/config.json'));
|
|
it('has the correct rootMountPoint', () =>
|
|
expect(constants.rootMountPoint).to.equal('./test/data'));
|
|
});
|