Konstantinos Kamaropoulos
5 years ago
9 changed files with 40 additions and 32 deletions
@ -1,12 +0,0 @@ |
|||||
import { NgModule } from '@angular/core'; |
|
||||
import { CommonModule } from '@angular/common'; |
|
||||
import { TranslateModule } from '@ngx-translate/core'; |
|
||||
|
|
||||
import { AboutRoutingModule } from './about-routing.module'; |
|
||||
import { AboutComponent } from './about.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
imports: [CommonModule, TranslateModule, AboutRoutingModule], |
|
||||
declarations: [AboutComponent] |
|
||||
}) |
|
||||
export class AboutModule {} |
|
@ -1,19 +1,19 @@ |
|||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
||||
|
|
||||
import { AboutComponent } from './about.component'; |
import { MapComponent } from './map.component'; |
||||
|
|
||||
describe('AboutComponent', () => { |
describe('MapComponent', () => { |
||||
let component: AboutComponent; |
let component: MapComponent; |
||||
let fixture: ComponentFixture<AboutComponent>; |
let fixture: ComponentFixture<MapComponent>; |
||||
|
|
||||
beforeEach(async(() => { |
beforeEach(async(() => { |
||||
TestBed.configureTestingModule({ |
TestBed.configureTestingModule({ |
||||
declarations: [AboutComponent] |
declarations: [MapComponent] |
||||
}).compileComponents(); |
}).compileComponents(); |
||||
})); |
})); |
||||
|
|
||||
beforeEach(() => { |
beforeEach(() => { |
||||
fixture = TestBed.createComponent(AboutComponent); |
fixture = TestBed.createComponent(MapComponent); |
||||
component = fixture.componentInstance; |
component = fixture.componentInstance; |
||||
fixture.detectChanges(); |
fixture.detectChanges(); |
||||
}); |
}); |
@ -0,0 +1,12 @@ |
|||||
|
import { NgModule } from '@angular/core'; |
||||
|
import { CommonModule } from '@angular/common'; |
||||
|
import { TranslateModule } from '@ngx-translate/core'; |
||||
|
|
||||
|
import { MapRoutingModule } from './map-routing.module'; |
||||
|
import { MapComponent } from './map.component'; |
||||
|
|
||||
|
@NgModule({ |
||||
|
imports: [CommonModule, TranslateModule, MapRoutingModule], |
||||
|
declarations: [MapComponent] |
||||
|
}) |
||||
|
export class MapModule {} |
Loading…
Reference in new issue