24 lines
635 B
TypeScript
24 lines
635 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { TutorialEditComponent } from './tutorial-edit.component';
|
|
|
|
describe('TutorialEditComponent', () => {
|
|
let component: TutorialEditComponent;
|
|
let fixture: ComponentFixture<TutorialEditComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [TutorialEditComponent]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(TutorialEditComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|