apeman-react-checkbox
Version:
apeman react package for checkbox component.
25 lines (19 loc) • 393 B
JavaScript
/**
* Test case for apCheckboxStyle.
* Runs with mocha.
*/
const ApCheckboxStyle = require('../lib/ap_checkbox_style.js').default
const assert = require('assert')
describe('ap-checkbox-style', () => {
before((done) => {
done()
})
after((done) => {
done()
})
it('Ap checkbox style', (done) => {
done()
})
})
/* global describe, before, after, it */