mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 07:40:22 +00:00
7 lines
150 B
JavaScript
7 lines
150 B
JavaScript
'use strict';
|
|
|
|
describe('$window', function() {
|
|
it("should inject $window", inject(function($window) {
|
|
expect($window).toBe(window);
|
|
}));
|
|
});
|