comp-lesson-card.component.spec.ts 617 B

123456789101112131415161718192021
  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { CompLessonCardComponent } from './comp-lesson-card.component';
  3. describe('CompLessonCardComponent', () => {
  4. let component: CompLessonCardComponent;
  5. let fixture: ComponentFixture<CompLessonCardComponent>;
  6. beforeEach(() => {
  7. TestBed.configureTestingModule({
  8. declarations: [CompLessonCardComponent]
  9. });
  10. fixture = TestBed.createComponent(CompLessonCardComponent);
  11. component = fixture.componentInstance;
  12. fixture.detectChanges();
  13. });
  14. it('should create', () => {
  15. expect(component).toBeTruthy();
  16. });
  17. });