aboutsummaryrefslogtreecommitdiffstats
path: root/test/service/windowSpec.js
blob: 3b8471469b3d19020d04f75bd52942055d171f66 (plain)
1
2
3
4
5
6
7
'use strict';

describe('$window', function() {
  it("should inject $window", inject(function($window) {
    expect($window).toBe(window);
  }));
});