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