mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 23:16:52 +08:00
14 lines
335 B
JavaScript
14 lines
335 B
JavaScript
describe('HeaderBar View', function() {
|
|
beforeEach(function() {
|
|
var h = document.createElement('header');
|
|
h.innerHTML = '<a class="button">Click</a><h2 class="title">What what what</h2>';
|
|
h.appendChild('h1');
|
|
});
|
|
|
|
it('Should init', function() {
|
|
var bar = new ionic.views.HeaderBar({
|
|
el: h
|
|
});
|
|
});
|
|
});
|