vee-dom
Version:
Small and easy to use virtual dom library
15 lines (11 loc) • 351 B
JavaScript
;
const assert = require('assert');
const mocha = require('mocha');
const ViDom = require('../index');
let describe = mocha.describe,
it = mocha.it;
describe('Initialization', () => {
it('should find the modules core object when requiring the index.js file', () => {
assert.equal(typeof ViDom != 'undefined', true);
});
});