您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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