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