mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-25 00:11:06 +00:00
3f5239b07f
Change-type: patch Signed-off-by: Roman Mazur <roman@balena.io>
12 lines
380 B
CoffeeScript
12 lines
380 B
CoffeeScript
prepare = require './lib/prepare'
|
|
{ expect } = require './lib/chai-config'
|
|
constants = require '../src/lib/constants'
|
|
|
|
describe 'constants', ->
|
|
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')
|