Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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();
        });
    });
  });
like image 575
TheOneTeam Avatar asked Aug 07 '14 09:08

TheOneTeam


1 Answers

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

sails.hooks.http.app
like image 150
sgress454 Avatar answered Dec 31 '22 20:12

sgress454