{{!
  Template for mocha testcase
}}/**
 * Test case for {{camelcase name}}.
 * Runs with mocha.
 */
'use strict'

const {{camelcase name}} = require('{{relative}}')
const assert = require('assert')

describe('{{spinalcase name}}', function () {
  this.timeout(3000)

  before(async () => {

  })

  after(async () => {

  })

  it('{{sentencecase name}}', async () => {

  })
})

/* global describe, before, after, it */
