UNPKG

mp-common

Version:

This is XPO MarketPlace common libary

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