25 lines
692 B
TypeScript
25 lines
692 B
TypeScript
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
|
||
|
import { ExpansionPanelComponent } from './expansion-panel.component';
|
||
|
|
||
|
describe('Organization::ExpansionPanelComponent', () => {
|
||
|
let component: ExpansionPanelComponent;
|
||
|
let fixture: ComponentFixture<ExpansionPanelComponent>;
|
||
|
|
||
|
beforeEach(async(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
declarations: [ExpansionPanelComponent]
|
||
|
}).compileComponents();
|
||
|
}));
|
||
|
|
||
|
beforeEach(() => {
|
||
|
fixture = TestBed.createComponent(ExpansionPanelComponent);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|