ngx-eagle
Version:
UI component infrastructure and Design components for mobile and desktop Angular web applications.
22 lines (17 loc) • 601 B
text/typescript
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { AccordionComponent } from './accordion.component';
describe('AccordionComponent', () => {
let component: AccordionComponent;
let fixture: ComponentFixture<AccordionComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [AccordionComponent]
});
fixture = TestBed.createComponent(AccordionComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});