Angular LMS app
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

course-details.component.spec.ts 678 B

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