UNPKG

mp-common

Version:

This is XPO MarketPlace common libary

26 lines (20 loc) 713 B
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { RepresentativeComponent } from './representative.component'; describe('RepresentativeComponent', () => { let component: RepresentativeComponent; let fixture: ComponentFixture<RepresentativeComponent>; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ RepresentativeComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(RepresentativeComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should be created', () => { expect(component).toBeTruthy(); }); });