Angular LMS app
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Это архивный репозиторий. Вы можете его клонировать или просматривать файлы, но не вносить изменения или открывать задачи/запросы на слияние.
 
 
 
 

26 строки
635 B

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