Skip to content

Instantly share code, notes, and snippets.

@gpincheiraa
Created July 16, 2017 02:23
Show Gist options
  • Save gpincheiraa/2fd40ed1cc0ffe432c3405360dd3e938 to your computer and use it in GitHub Desktop.
Save gpincheiraa/2fd40ed1cc0ffe432c3405360dd3e938 to your computer and use it in GitHub Desktop.
todoList.component.html - First Impressions using jest for TDD over AngularJS > 1.5.x — Part I
<div class="todo-list">
<div ng-repeat="todo in $ctrl.todosList track by $index">
<label>
<input type="checkbox" ng-model="todo.completed"> {{todo.name}}
<button ng-click="$ctrl.deleteTodo($index)">x</button>
</label>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment