Няма описание

annotations.spec.ts 334B

123456789101112131415
  1. import satellizer from './../src/ng1';
  2. describe('angular annotations', () => {
  3. beforeEach(angular.mock.module(satellizer));
  4. beforeEach(() => {
  5. angular.mock.inject.strictDi(true);
  6. });
  7. it('should create the injector without errors', angular.mock.inject(['$auth', ($auth) => {
  8. expect($auth).toBeTruthy();
  9. }]));
  10. });