mach-react
Version:
Fast, and tiny react implementation.
11 lines (10 loc) • 335 B
JavaScript
;
import Describe from '../components/Describe';
import Assert from '../components/Assert';
import It from '../components/It';
window.Describe = Describe;
window.Assert = Assert;
window.It = It;
/* eslint-disable quotes */
let specsContext = require.context(".", true, /_spec$/);
specsContext.keys().forEach(specsContext);