6 changed files with 48 additions and 6 deletions
@ -0,0 +1 @@
|
||||
<p>compang-info works!</p> |
@ -0,0 +1,25 @@
|
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
||||
|
||||
import { CompangInfoComponent } from './compang-info.component'; |
||||
|
||||
describe('CompangInfoComponent', () => { |
||||
let component: CompangInfoComponent; |
||||
let fixture: ComponentFixture<CompangInfoComponent>; |
||||
|
||||
beforeEach(async(() => { |
||||
TestBed.configureTestingModule({ |
||||
declarations: [ CompangInfoComponent ] |
||||
}) |
||||
.compileComponents(); |
||||
})); |
||||
|
||||
beforeEach(() => { |
||||
fixture = TestBed.createComponent(CompangInfoComponent); |
||||
component = fixture.componentInstance; |
||||
fixture.detectChanges(); |
||||
}); |
||||
|
||||
it('should create', () => { |
||||
expect(component).toBeTruthy(); |
||||
}); |
||||
}); |
@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
|
||||
@Component({ |
||||
selector: 'app-compang-info', |
||||
templateUrl: './compang-info.component.html', |
||||
styleUrls: ['./compang-info.component.scss'] |
||||
}) |
||||
export class CompangInfoComponent implements OnInit { |
||||
|
||||
constructor() { } |
||||
|
||||
ngOnInit(): void { |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue