Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

family-tree.spec.ts 556B

12345678910111213141516171819202122
  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { FamilyTree } from './family-tree';
  3. describe('FamilyTree', () => {
  4. let component: FamilyTree;
  5. let fixture: ComponentFixture<FamilyTree>;
  6. beforeEach(async () => {
  7. await TestBed.configureTestingModule({
  8. imports: [FamilyTree],
  9. }).compileComponents();
  10. fixture = TestBed.createComponent(FamilyTree);
  11. component = fixture.componentInstance;
  12. await fixture.whenStable();
  13. });
  14. it('should create', () => {
  15. expect(component).toBeTruthy();
  16. });
  17. });