Skip to content

Instantly share code, notes, and snippets.

@gpincheiraa
Last active September 23, 2017 05:58
Show Gist options
  • Save gpincheiraa/be45b178461a22cc53b5b6c14ff3b026 to your computer and use it in GitHub Desktop.
Save gpincheiraa/be45b178461a22cc53b5b6c14ff3b026 to your computer and use it in GitHub Desktop.
routes.js - First Impressions using jest for TDD over AngularJS > 1.5.x — Part I
import '@uirouter/angularjs'
export function routes($stateProvider, $locationProvider) {
$locationProvider.html5Mode({
enabled: true,
requireBase: false
})
$stateProvider
.state("home", {
url: "/",
component: "todoList"
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment