UNPKG

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