iperlems-select.component.spec.ts 698 B

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