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