Merge pull request #224 from diogob/fix_js_spec

fixed broken JS specs
Esse commit está contido em:
Antônio Roberto Silva
2013-08-19 14:11:34 -07:00
+2 -1
Ver Arquivo
@@ -1,8 +1,9 @@
describe("Explore", function() {
var view;
var parentView = { $search: { val: function(){} }, router: {route: function(){} } };
beforeEach(function() {
view = new App.views.Explore();
view = new App.views.Explore({ parent: parentView });
});
describe("#$window", function() {