Skip to content

Instantly share code, notes, and snippets.

@gpincheiraa
Created July 16, 2017 03:05
Show Gist options
  • Save gpincheiraa/8e9eb00dc713977ca918b1734a0a5ac5 to your computer and use it in GitHub Desktop.
Save gpincheiraa/8e9eb00dc713977ca918b1734a0a5ac5 to your computer and use it in GitHub Desktop.
index.js - First Impressions using jest for TDD over AngularJS > 1.5.x — Part I
import angular from 'angular';
import { routes } from './routes'
import { TodoListComponent } from "./components/todoList.component"
angular
.module('App', ['ngRoute'])
.config(routes)
.component('todoList', TodoListComponent)
angular.bootstrap(document, ['App']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment