UNPKG

asenv

Version:
28 lines (17 loc) 354 B
/** * Test case for constants. * Runs with mocha. */ 'use strict' 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 */