UNPKG

apeman-scff

Version:
22 lines (17 loc) 344 B
/** * Test for index.js * Runs with mocha. */ 'use strict' 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 */