UNPKG

apeman-asset-javascripts

Version:
20 lines (16 loc) 329 B
/** * Test for index.js * Runs with mocha. */ 'use strict' const index = require('../index') const assert = require('assert') describe('index', () => { it('Eval props.', (done) => { Object.keys(index).forEach((key) => { assert.ok(index[ key ]) }) done() }) }) /* global describe, before, after, it */