SIGN IN SIGN UP
angular / angular.js UNCLAIMED

AngularJS - HTML enhanced for web apps!

0 0 0 JavaScript
'use strict';
describe('$window', function() {
it('should inject $window', inject(function($window) {
expect($window).toBe(window);
}));
it('should be able to mock $window without errors', function() {
module({$window: {}});
inject(['$sce', angular.noop]);
});
});