Introduce components directories

This commit is contained in:
ziajka
2018-06-27 10:34:15 +02:00
parent 4f3ad287f0
commit e82b4e48cd
65 changed files with 115 additions and 115 deletions

View File

@ -0,0 +1,22 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ProjectMapComponent } from './project-map.component';
describe('ProjectMapComponent', () => {
let component: ProjectMapComponent;
let fixture: ComponentFixture<ProjectMapComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ProjectMapComponent ],
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ProjectMapComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
});