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