Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

24 wiersze
623 B

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