import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { TwoColumnPageComponent } from './two-column-page.component'; describe('TwoColumnPageComponent', () => { let component: TwoColumnPageComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [TwoColumnPageComponent] }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(TwoColumnPageComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });