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