UNPKG

341 BJavaScriptView Raw
1/**
2 * Test for index.js
3 * Runs with mocha.
4 */
5
6'use strict'
7
8const index = require('../lib/index')
9const co = require('co')
10const assert = require('assert')
11
12it('Eval properties.', () => co(function * () {
13 assert.ok(index)
14 Object.keys(index).forEach((key) => {
15 assert.ok(key)
16 assert.ok(index[ key ])
17 })
18}))
19
20/* global it */