不要怂,就是干,撸起袖子干!

Commit 680d452e by Mick Hansen

remove logging statements

1 parent 35919254
Showing with 1 additions and 5 deletions
...@@ -95,7 +95,6 @@ describe(Support.getTestDialectTeaser("Includes with schemas"), function () { ...@@ -95,7 +95,6 @@ describe(Support.getTestDialectTeaser("Includes with schemas"), function () {
Group.hasMany(GroupMember, {as: 'Memberships'}) Group.hasMany(GroupMember, {as: 'Memberships'})
self.sequelize.sync({force: true}).done(function () { self.sequelize.sync({force: true}).done(function () {
console.log("DONE WITH SYNC")
var count = 4 var count = 4
, i = -1 , i = -1
...@@ -248,7 +247,6 @@ describe(Support.getTestDialectTeaser("Includes with schemas"), function () { ...@@ -248,7 +247,6 @@ describe(Support.getTestDialectTeaser("Includes with schemas"), function () {
it('should support an include with multiple different association types', function (done) { it('should support an include with multiple different association types', function (done) {
var self = this var self = this
this.sequelize.options.logging = console.log
self.sequelize.dropAllSchemas().success(function(){ self.sequelize.dropAllSchemas().success(function(){
self.sequelize.createSchema("account").success(function(){ self.sequelize.createSchema("account").success(function(){
...@@ -435,9 +433,7 @@ describe(Support.getTestDialectTeaser("Includes with schemas"), function () { ...@@ -435,9 +433,7 @@ describe(Support.getTestDialectTeaser("Includes with schemas"), function () {
) )
}] }]
}, done) }, done)
}).error(function(err) { }).error(done)
console.log(err)
})
}) })
}) })
}) })
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!