Testing can be hard and Ember doesn't exactly have the greatest resources for testing. QUnit is the "official" testing framework for Ember.js apps and it has the most resources dedicated to it which can make using something like Jasmine a bit harder.
Ember requires a bit of setup to get working properly with Jasmine. Before anything else, we need to set up our helpers/spec_helper.js file. The following code sets Ember up for testing, gives us our test helpers, and even puts a small div showcasing our app in the bottom right corner...