UNPKG

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