apeman-react-section
Version:
apeman react package for section components.
25 lines (19 loc) • 383 B
JavaScript
/**
* Test case for apSectionBody.
* Runs with mocha.
*/
const ApSectionBody = require('../lib/ap_section_body.js').default
const assert = require('assert')
describe('ap-section-body', () => {
before((done) => {
done()
})
after((done) => {
done()
})
it('Ap section body', (done) => {
done()
})
})
/* global describe, before, after, it */