Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. });