breact
Version:
Browser react utility
28 lines (18 loc) • 394 B
JavaScript
/**
* Test case for mount.
* Runs with mocha.
*/
const mount = require('../lib/mount.js')
const assert = require('assert')
const co = require('co')
describe('mount', function () {
this.timeout(3000)
before(() => co(function * () {
}))
after(() => co(function * () {
}))
it('Mount', () => co(function * () {
}))
})
/* global describe, before, after, it */