Files
airport-chengdu-web/src/app/pages/system-management/role-management/role-management-modify/role-management-modify.component.spec.ts
T
2018-12-10 18:31:18 +08:00

26 lines
728 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { RoleManagementModifyComponent } from './role-management-modify.component';
describe('RoleManagementModifyComponent', () => {
let component: RoleManagementModifyComponent;
let fixture: ComponentFixture<RoleManagementModifyComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ RoleManagementModifyComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(RoleManagementModifyComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});