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

Commit 23bd1092 by Bulkan Evcimen

remove .only & .tap(console.log)

1 parent b2416a8a
Showing with 1 additions and 4 deletions
...@@ -43,9 +43,7 @@ if (dialect.match(/^postgres/)) { ...@@ -43,9 +43,7 @@ if (dialect.match(/^postgres/)) {
}); });
}); });
it.only('should be able update a field with type ARRAY(JSON)', function(){ it('should be able update a field with type ARRAY(JSON)', function(){
var self = this;
return this.User.create({ return this.User.create({
username: 'bob', email: ['myemail@email.com'] username: 'bob', email: ['myemail@email.com']
}) })
...@@ -63,7 +61,6 @@ if (dialect.match(/^postgres/)) { ...@@ -63,7 +61,6 @@ if (dialect.match(/^postgres/)) {
}); });
}) })
.get('friends') .get('friends')
.tap(console.log)
.tap(function(friends){ .tap(function(friends){
expect(friends).to.have.length(1); expect(friends).to.have.length(1);
}); });
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!