Files
ionic-framework/js/ext/angular/test/directive/ionicNavRouter.unit.js
2013-11-19 16:13:23 -06:00

20 lines
438 B
JavaScript

describe('Angular Ionic Nav Router', function() {
var modal, q;
beforeEach(module('ngRoute'));
beforeEach(module('ionic.ui.navRouter'));
beforeEach(inject(function($compile, $rootScope, $controller) {
compile = $compile;
scope = $rootScope;
}));
it('Should init', function() {
element = compile('<pane nav-router>' +
'<nav-bar></nav-bar>' +
'<ng-view></ng-view>' +
'</pane>')(scope);
});
});