Files
ionic-framework/js/ext/angular/test/directive/ionicList.unit.js
2013-11-22 10:50:40 -06:00

20 lines
440 B
JavaScript

describe('Ionic List', function() {
var compile, scope;
beforeEach(module('ionic.ui.list'));
beforeEach(inject(function($compile, $rootScope, $controller) {
compile = $compile;
scope = $rootScope;
}));
it('Should init', function() {
element = compile('<list>' +
'<list-item></list-item>' +
'<list-item></list-item>' +
'</list>')(scope);
expect(element.children().length).toBe(2);
});
});