You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112131415 |
- /**
- * Created by robin on 12/11/16.
- */
-
- describe('lu-promise factory', function() {
- var luBusyBusiness;
-
- // Before each test load our api.users module
- beforeEach(angular.mock.module('luticate2Utils'));
-
- // Before each test set our injected Users factory (_Users_) to our local Users variable
- beforeEach(inject(function(_luBusyBusiness_) {
- luBusyBusiness = _luBusyBusiness_;
- }));
- });
|