Skip to content

Instantly share code, notes, and snippets.

@gpincheiraa
Last active September 28, 2017 03:53
Show Gist options
  • Save gpincheiraa/7ff3fc2ab6ba786a04236958d417a439 to your computer and use it in GitHub Desktop.
Save gpincheiraa/7ff3fc2ab6ba786a04236958d417a439 to your computer and use it in GitHub Desktop.
todoList.component.js- 2 First Impressions using jest for TDD over AngularJS > 1.5.x — Part I
export class TodoListController {
constructor(){
this.todosList = []
}
addTodo(todo){
this.todosList.push(todo)
}
}
export const TodoListComponent = {
controller: TodoListController
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment