Permalink
Please sign in to comment.
Showing
with
46 additions
and 1 deletion.
@@ -0,0 +1,3 @@ | |||
<p> | |||
todo works! | |||
</p> |
No changes.
@@ -0,0 +1,25 @@ | |||
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; | |||
|
|||
import { TodoComponent } from './todo.component'; | |||
|
|||
describe('TodoComponent', () => { | |||
let component: TodoComponent; | |||
let fixture: ComponentFixture<TodoComponent>; | |||
|
|||
beforeEach(async(() => { | |||
TestBed.configureTestingModule({ | |||
declarations: [ TodoComponent ] | |||
}) | |||
.compileComponents(); | |||
})); | |||
|
|||
beforeEach(() => { | |||
fixture = TestBed.createComponent(TodoComponent); | |||
component = fixture.componentInstance; | |||
fixture.detectChanges(); | |||
}); | |||
|
|||
it('should create', () => { | |||
expect(component).toBeTruthy(); | |||
}); | |||
}); |
@@ -0,0 +1,15 @@ | |||
import { Component, OnInit } from '@angular/core'; | |||
|
|||
@Component({ | |||
selector: 'app-todo', | |||
templateUrl: './todo.component.html', | |||
styleUrls: ['./todo.component.scss'] | |||
}) | |||
export class TodoComponent implements OnInit { | |||
|
|||
constructor() { } | |||
|
|||
ngOnInit() { | |||
} | |||
|
|||
} |
0 comments on commit
bd5ec41