anycode-components
Version:
anycode-components (RiotJS Tag Library) - A set of common RiotJS tags used by Anycode
18 lines (15 loc) • 535 B
JavaScript
describe('Riot Tag Specs', function () {
var element;
beforeEach(function () {
element = document.createElement('iconic-navigation');
element.setAttribute('data-fixed', 'left');
element.setAttribute('data-effect', 'slide');
document.body.innerHTML = '';
document.body.appendChild(element);
})
//document.querySelector('iconic-navigation')
it('mounts the tag', function () {
var navs = riot.mount('iconic-navigation');
expect(navs.length).to.be(1)
})
})