How can we access express app instance from Sails global object after upgrade?
When in sails.0.9x we can access express app instance by
sails.express.app
after upgrading to 0.10, the express function is missing
How can we call the app?
Our test case failed since using supertest, how can we fixed the sails.express.app problem
var request = require("supertest");
describe("TestController", function() {
describe(".plain", function () {
it("returns 200 with status done", function(done) {
request(sails.express.app)
.get("/test/plain")
.expect(200, { status: "done" })
.expect("Content-Type", /json/)
.end(function(err, res) {
if (err) return done(err);
done();
});
});
});
In Sails v0.10 the underlying HTTP server (i.e. the Express app) is available as:
sails.hooks.http.app
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With