Я новичок в тестировании в angular и испытываю некоторые трудности. Когда создается новый компонент или служба, создается новый файл тестирования, как показано ниже (для компонента). Однако при запуске ng test не удается выполнить простой тест «следует создать» и говорится, что переменная «компонент» пуста.
Что мне не хватает? Нужно ли мне вводить те же зависимости для компонента?
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CreatorStudioComponent } from './creator-studio.component';
describe('CreatorStudioComponent', () => {
let component: CreatorStudioComponent;
let fixture: ComponentFixture<CreatorStudioComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ CreatorStudioComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CreatorStudioComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});