fix(deps): Updating dependencies

This commit is contained in:
Chris Troutner
2022-09-17 10:10:39 -07:00
parent a033fb1042
commit d266bcc54b
4 changed files with 39 additions and 17 deletions
+22
View File
@@ -0,0 +1,22 @@
/*
Unit tests for the config directory
*/
let currentEnv
describe('#config', () => {
before(() => {
// Backup the current environment setting.
currentEnv = process.env.SVC_ENV
})
after(() => {
// Restore the environment setting before starting these tests.
process.env.SVC_ENV = currentEnv
})
it('Should return development environment config', () => {
// import config from '../../../config/index.js'
// console.log('config: ', config)
})
})