apeman-asset-javascripts
Version:
Javascript assets for apeman.
20 lines (16 loc) • 329 B
JavaScript
/**
* Test for index.js
* Runs with mocha.
*/
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 */