apeman-scff
Version:
Project scaffolding tool.
22 lines (17 loc) • 344 B
JavaScript
/**
* Test for index.js
* Runs with mocha.
*/
const index = require('../lib/index.js')
const assert = require('assert')
describe('index.', () => {
it('Eval props.', (done) => {
Object.keys(index).forEach((key) => {
assert.ok(key)
assert.ok(index[ key ])
})
done()
})
})
/* global describe, it */