blob: 591a001529cb7fed3ef8eb43fb1f5f6e4f13f628 [file] [log] [blame]
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ExpandableComponent } from './expandable.component';
describe('ExpandableComponent', () => {
let component: ExpandableComponent;
let fixture: ComponentFixture<ExpandableComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ExpandableComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ExpandableComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});