Я пытаюсь проверить статическое значение компонента в spec-файле. но получаю ошибку. Как проверить статическое значение компонента в spec-файле?
вот мое объявление TS-файла:
hideComponent = true;
в spec-файле:
describe('SetupConfigComponent', () => {
let component: SetupConfigComponent;
let fixture: ComponentFixture<SetupConfigComponent>;
// let actions$: Observable<Action>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ SetupConfigComponent ],
imports: [
RouterTestingModule,
SharedModule,
StoreModule.forRoot({}),
StoreModule.forFeature('setupConfig', fromSetupConfig.reducer),
EffectsModule.forRoot([]),
EffectsModule.forFeature([SetupConfigEffects]),
],
providers: [],
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(SetupConfigComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
it('should be true on hideComponent', () => {
expect(component.hideComponent).toEqual(true);
});
});