TRIVIAL: Remove some output from qunit test suite.

This commit is contained in:
Robin Ward 2014-06-19 16:00:01 -04:00
parent f0da4bf632
commit 9d82111813
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
module("Discourse.HasCurrentUser");
test("adds `currentUser` property to an object and ensures it is not cached", function() {
sinon.stub(Discourse.User, "current");
this.stub(Discourse.User, "current");
var testObj = Ember.Object.createWithMixins(Discourse.HasCurrentUser, {});
Discourse.User.current.returns("first user");

View File

@ -46,7 +46,7 @@ test("renders correctly with all allowed properties set", function() {
test("is registered as helper", function() {
var view = Ember.View.create({
template: Ember.Handlebars.compile("{{textField}}")
template: Ember.Handlebars.compile("{{text-field}}")
});
Ember.run(function() {