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.

lu-busy-business.spec.js 416B

123456789101112131415
  1. /**
  2. * Created by robin on 12/11/16.
  3. */
  4. describe('lu-promise factory', function() {
  5. var luBusyBusiness;
  6. // Before each test load our api.users module
  7. beforeEach(angular.mock.module('luticate2Utils'));
  8. // Before each test set our injected Users factory (_Users_) to our local Users variable
  9. beforeEach(inject(function(_luBusyBusiness_) {
  10. luBusyBusiness = _luBusyBusiness_;
  11. }));
  12. });