asenv
Version:
NODE_ENV accessor
28 lines (17 loc) • 354 B
JavaScript
/**
* Test case for constants.
* Runs with mocha.
*/
const constants = require('../lib/constants.js')
const assert = require('assert')
describe('constants', function () {
this.timeout(3000)
before(async () => {
})
after(async () => {
})
it('Constants', async () => {
})
})
/* global describe, before, after, it */