UNPKG

ngx-lib-phone-input

Version:

This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.3.0. NgxPhoneNumberInput is an Angular library for easy integration of phone number input fields in your Angular applications.

24 lines (18 loc) 648 B
import { ComponentFixture, TestBed } from '@angular/core/testing'; import { PhoneInputComponent } from './phone-input.component'; describe('PhoneInputComponent', () => { let component: PhoneInputComponent; let fixture: ComponentFixture<PhoneInputComponent>; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [PhoneInputComponent] }) .compileComponents(); fixture = TestBed.createComponent(PhoneInputComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });