the-scaffold
Version:
Scaffold for the-projects
28 lines (18 loc) • 374 B
JavaScript
/**
* Test case for listTypes.
* Runs with mocha.
*/
const listTypes = require('../lib/list_types.js')
const assert = require('assert')
describe('list-types', function () {
this.timeout(3000)
before(async () => {
})
after(async () => {
})
it('List types', async () => {
listTypes({})
})
})
/* global describe, before, after, it */