mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 14:19:17 +08:00
15 lines
266 B
JavaScript
15 lines
266 B
JavaScript
describe('RouteController', function() {
|
|
|
|
beforeEach(function() {
|
|
});
|
|
|
|
it('Should init', function() {
|
|
var rc = new RouteViewController({
|
|
root: 'hacking/route.html';
|
|
});
|
|
rc.when('/', function() {
|
|
console.log('Loaded');
|
|
});
|
|
});
|
|
});
|