UNPKG

351 BJavaScriptView Raw
1/**
2 * Test case for index.
3 * Runs with mocha.
4 */
5'use strict'
6
7const index = require('../lib/index.js')
8const assert = require('assert')
9
10describe('index', () => {
11
12 before((done) => {
13 done()
14 })
15
16 after((done) => {
17 done()
18 })
19
20 it('index', (done) => {
21 assert.ok(index)
22 done()
23 })
24})
25
26/* global describe, before, after, it */