render-index.test.js 331 B

1234567891011121314
  1. const chai = require('chai');
  2. const should = chai.should();
  3. const ExampleStore = require('../../lib/ExampleStore');
  4. const exStore = new ExampleStore(__dirname + '/test-examples');
  5. describe('render index', () => {
  6. before(() => exStore.init());
  7. it('without selected repo or example', () => {
  8. });
  9. });