import { ComponentFixture, TestBed } from '@angular/core/testing'; import { WrapValueComponent } from './wrap-value.component'; describe('WrapValueComponent', () => { let component: WrapValueComponent; let fixture: ComponentFixture; beforeEach(() => { TestBed.configureTestingModule({ imports: [WrapValueComponent] }); fixture = TestBed.createComponent(WrapValueComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });