Advertisement
aaronsnig501

Untitled

Aug 24th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. describe("Users Service", function() {
  2.     var UserAPIService;
  3.  
  4.     beforeEach(angular.mock.module('UserService'));
  5.  
  6.     beforeEach(inject(function(_UserAPIService_) {
  7.         UserAPIService = _UserAPIService_;
  8.     }));
  9.  
  10.     it("should exist", function() {
  11.         expect(UserAPIService).toBeDefined();
  12.     });
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement