Files
ionic-framework/test/js/views/headerBar.unit.js
2013-10-02 15:18:14 -05:00

14 lines
315 B
JavaScript

describe('HeaderBar View', function() {
var h;
beforeEach(function() {
h = document.createElement('header');
h.innerHTML = '<a class="button">Click</a><h1 class="title">What what what</h1>';
});
it('Should init', function() {
var bar = new ionic.views.HeaderBar({
el: h
});
});
});