fur-shapes
Version:
Shapes for fur.
28 lines (18 loc) • 374 B
JavaScript
/**
* Test case for h.
* Runs with mocha.
*/
const h = require('../lib/h.js')
const assert = require('assert')
const co = require('co')
describe('h', function () {
this.timeout(3000)
before(() => co(function * () {
}))
after(() => co(function * () {
}))
it('H', () => co(function * () {
}))
})
/* global describe, before, after, it */