ensure app is booted before integration tests
This commit is contained in:
parent
0ad150cb6e
commit
c317204c74
|
@ -18,13 +18,18 @@ _beforeEach.withApp = function(app) {
|
||||||
app.models.User.settings.saltWorkFactor = 4;
|
app.models.User.settings.saltWorkFactor = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
beforeEach(function() {
|
beforeEach(function(done) {
|
||||||
this.app = app;
|
this.app = app;
|
||||||
var _request = this.request = request(app);
|
var _request = this.request = request(app);
|
||||||
this.post = _request.post;
|
this.post = _request.post;
|
||||||
this.get = _request.get;
|
this.get = _request.get;
|
||||||
this.put = _request.put;
|
this.put = _request.put;
|
||||||
this.del = _request.del;
|
this.del = _request.del;
|
||||||
|
|
||||||
|
if (app.booting) {
|
||||||
|
return app.once('booted', done);
|
||||||
|
}
|
||||||
|
done();
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue