mirror of
https://github.com/Permissionless-Software-Foundation/x402-base-facilitator.git
synced 2026-09-21 16:52:01 -07:00
fix(deps): Updating dependencies
This commit is contained in:
@@ -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)
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user