Created
July 16, 2017 03:05
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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