mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-19 21:57:54 +00:00
b5a427f2b9
Change-type: patch Signed-off-by: Cameron Diver <cameron@balena.io>
15 lines
467 B
TypeScript
15 lines
467 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'));
|
|
});
|