mp-common
Version:
This is XPO MarketPlace common libary
26 lines (20 loc) • 674 B
text/typescript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { DataCardComponent } from './data-card.component';
describe('DataCardComponent', () => {
let component: DataCardComponent;
let fixture: ComponentFixture<DataCardComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ DataCardComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(DataCardComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});