fnando/test_squad

View on GitHub
lib/generators/test_squad/install/templates/ember/router_test.js

Summary

Maintainability
A
0 mins
Test Coverage
module("Router", {setup: function(){
  App.reset();
}});

test("root route", function() {
  visit("/");

  andThen(function(){
    equal(currentRouteName(), "index");
  });
});