Kit Ho
Kit Ho

Reputation: 26968

Sails.js v 10.2 missing express app

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();
        });
    });
  });

Upvotes: 6

Views: 1300

Answers (1)

sgress454
sgress454

Reputation: 24948

In Sails v0.10 the underlying HTTP server (i.e. the Express app) is available as:

sails.hooks.http.app

Upvotes: 10

Related Questions