Merge branch 'develop' of github.com:HabitRPG/habitrpg into joyclark-autocomplete_unit_tests

This commit is contained in:
Blade Barringer
2015-04-29 07:50:33 -05:00
69 changed files with 280 additions and 190 deletions

View File

@@ -124,7 +124,7 @@ describe("Autocomplete controller", function() {
});
it('filters with empty prefix and returns true', function() {
scope.query = {text: ""}
scope.query = {text: ""};
expect(scope.filterUser({user: "prefix"})).to.be.eq(true);
});
@@ -165,5 +165,5 @@ describe("Autocomplete controller", function() {
scope.group.chat.push({msg: "new chat", user: "boo"});
expect(chatChanged.callCount).to.be.eq(1);
});
});
});
});