25 lines
614 B
JavaScript
25 lines
614 B
JavaScript
/* eslint-env mocha */
|
|
|
|
var path = require('path')
|
|
var assert = require('assert')
|
|
var applicationConfigPath = require('./')
|
|
|
|
describe('application-config-path', function () {
|
|
it('should return an absolute path', function () {
|
|
assert.ok(path.isAbsolute(applicationConfigPath('test')))
|
|
})
|
|
|
|
it('should throw error when called incorrectly', function () {
|
|
assert.throws(function () {
|
|
applicationConfigPath()
|
|
}, TypeError)
|
|
|
|
assert.throws(function () {
|
|
applicationConfigPath(1)
|
|
}, TypeError)
|
|
|
|
assert.throws(function () {
|
|
applicationConfigPath({})
|
|
}, TypeError)
|
|
})
|
|
})
|