用户管理-列表开发

This commit is contained in:
liweijin
2018-11-19 20:58:55 +08:00
parent 5b29727f7f
commit 074d4b7409
12 changed files with 269 additions and 49 deletions
@@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { RequestStatusComponent } from './request-status.component';
describe('RequestStatusComponent', () => {
let component: RequestStatusComponent;
let fixture: ComponentFixture<RequestStatusComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ RequestStatusComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(RequestStatusComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});