添加菜单页路由

This commit is contained in:
zhouyuejun
2018-10-29 16:27:34 +08:00
parent bec3bb9137
commit b2dc055a3d
58 changed files with 769 additions and 8 deletions
@@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { BasicDataComponent } from './basic-data.component';
describe('BasicDataComponent', () => {
let component: BasicDataComponent;
let fixture: ComponentFixture<BasicDataComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ BasicDataComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(BasicDataComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});