asenv
Version:
NODE_ENV accessor
30 lines (19 loc) • 428 B
JavaScript
/**
* Test case for unlessProduction.
* Runs with mocha.
*/
const unlessProduction = require('../lib/unless_production.js')
const assert = require('assert')
describe('unless-production', function () {
this.timeout(3000)
before(async () => {
})
after(async () => {
})
it('Unless production', async () => {
unlessProduction(() => {
})
})
})
/* global describe, before, after, it */