We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40110ab commit 8c70fdeCopy full SHA for 8c70fde
test/2.api/07.reading.apps.js
@@ -56,8 +56,8 @@ describe('Reading apps', function(){
56
.end(function(err, res){
57
if (err) return done(err);
58
var ob = JSON.parse(res.text);
59
- ob.should.have.property('admin_of', []);
60
- ob.should.have.property('user_of', []);
+ ob.should.have.property('admin_of').be.empty;
+ ob.should.have.property('user_of').be.empty;
61
done()
62
});
63
@@ -70,10 +70,10 @@ describe('Reading apps', function(){
70
71
72
73
74
75
76
77
78
79
-});
+});
0 commit comments