Skip to content
Snippets Groups Projects
floating-keypad.component.spec.ts 768 B
Newer Older
  • Learn to ignore specific revisions
  • import { ComponentFixture, TestBed } from '@angular/core/testing';
    
    import { OverlayModule } from '@angular/cdk/overlay';
    
    import { FloatingKeypadComponent } from './floating-keypad.component';
    
    describe('FloatingKeypadComponent', () => {
      let component: FloatingKeypadComponent;
      let fixture: ComponentFixture<FloatingKeypadComponent>;
    
      beforeEach(async () => {
        await TestBed.configureTestingModule({
    
          imports: [OverlayModule],
          declarations: [FloatingKeypadComponent]
    
        })
          .compileComponents();
      });
    
      beforeEach(() => {
        fixture = TestBed.createComponent(FloatingKeypadComponent);
        component = fixture.componentInstance;
        fixture.detectChanges();
      });
    
      it('should create', () => {
        expect(component).toBeTruthy();
      });
    });