Skip to content

Instantly share code, notes, and snippets.

@ianpetzer
Created June 14, 2013 06:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ianpetzer/5779968 to your computer and use it in GitHub Desktop.
Save ianpetzer/5779968 to your computer and use it in GitHub Desktop.
module("Ember.js Library", {
setup: function() {
Ember.run(App, App.advanceReadiness);
},
teardown: function() {
App.reset();
}
});
test("Check HTML is returned", function() {
visit("/").then(function() {
ok(exists("*"), "Found HTML!");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment