Угловое модульное тестирование: почему мой ожидание (1) .toBe (2) всегда проходит? - PullRequest
0 голосов
/ 21 июня 2019

Я понял, что, вероятно, мой тест никогда не будет выполнен.Потому что цвет описания теста на выходе не зеленый и не красный.Может быть, я ошибаюсь.Я также выяснил, что это работает нормально, если я закомментирую component.ngOnInit(); Я предоставляю весь код моего spec-файла, не пропуская ничего, что могло бы быть проблемой.

enter image description here

SPEC

class AppConstantsStub {
  public userPreferences = {
    modelData: {
      basicDetails: {
        itemId: 3 // some other valid value here is fine
      }
    },
    UserBasicDetails: {
      // some valid values here, maybe
    }
  };
}
class ComponentDetailsServiceStub {
  defaultProperties = {
    editable: false,
    showToolbar: false,
    viewMode: false,
    editMode: false,
    showPopup: true,
    formSavedClicked: false,
    cancelClicked: false,
    refresh: false,
   };

  push(value){
    this.propertiesSource.next(value);
  }
  private propertiesSource = new BehaviorSubject(this.defaultProperties);
  currentProperties = this.propertiesSource.asObservable();



  setDefaultCancelClicked() { }
}
class SearchAPIServiceStub {


}
class UOMServiceStub { }
class BomDetailsServiceStub { }
class FormBuilderUtilsServiceStub { }
class DMServiceStub { }
class GlobalLoaderServiceStub {
  hideLoader() { }
}
class SCNotificationServiceStub { }
class CreateRfxServiceStub { }
class LayoutServiceStub { }
class GridFilterServiceStub {
  searchConfig() { return null; }
}

describe('component details', () => {
  let componentDetailsComponent: ComponentDetailsComponent;
  let subject: ComponentDetailsComponent;
  let formBuilderUtilsService: FormBuilderUtilsService;
  let appConstants: AppConstants;
  let componentDetailsService: ComponentDetailsServiceStub;
  let dMService: DMService;
  let globalLoaderService: GlobalLoaderServiceStub;
  let sCNotificationService: SCNotificationService;
  let createRfxService: CreateRfxService;
  let layoutService: LayoutService;
  let gridFilterService: GridFilterService;

  let mode: string;

  let fixture: ComponentFixture<ComponentDetailsComponent>;

  beforeEach(() => {
    TestBed.configureTestingModule({
      declarations: [ComponentDetailsComponent],
      providers: [

        { provide: FormBuilderUtilsService, useClass: FormBuilderUtilsServiceStub },
        { provide: AppConstants, useClass: AppConstantsStub },
        { provide: ComponentDetailsService, useClass: ComponentDetailsServiceStub },
        { provide: DMService, useClass: DMServiceStub },
        { provide: GlobalLoaderService, useClass: GlobalLoaderServiceStub },
        { provide: SCNotificationService, useClass: SCNotificationServiceStub },
        { provide: CreateRfxService, useClass: CreateRfxServiceStub },
        { provide: LayoutService, useClass: LayoutServiceStub },
        { provide: GridFilterService, useClass: GridFilterServiceStub },

      ],

      schemas: [NO_ERRORS_SCHEMA]
    });
    // subject = TestBed.get(ComponentDetailsComponent);

      fixture = TestBed.createComponent(ComponentDetailsComponent);
      subject = fixture.componentInstance;
       componentDetailsService = TestBed.get(ComponentDetailsService);
     fixture.detectChanges();
  });
  it('should create componentDetailsComponent', () => {
    expect(1).toBe(2);
  });


}
);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...