Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Problem calling Serve.stopServer after Serve.start for automated tests #113

Open
pguatura opened this issue Jul 1, 2016 · 0 comments
Open

Comments

@pguatura
Copy link

pguatura commented Jul 1, 2016

Hi!

I was trying to use the ionic serve feature to execute some automated tests on my app using the following:

//some code
var promise = Q();
  return promise
 .then(function() {
      return Serve.start(options);
})
.then(function(){
        //execute some tests
})
.finally(function(){
        return Serve.stopServer();
});

But, I was getting an error stating that the server was not running. Looking at the code of server.js I found out that when Serve.start is called, it doesn't wait for the server to really start before returning, so we had no garantee that the server would be running when Server.stop is called.

Therefore, I propose the following solution:

Serve.startServer = function startServer(options, app) {
// original code

  // Listen
  var q = Q.defer();
  app.use(server);
  try {
    runningServer = app.listen(options.port, options.address,function(){
        logging.logger.info('Running dev server: '.green.bold, options.devServer);
        q.resolve()
    });
  }catch(ex) {
    q.reject(Utils.fail('Failed to start the Ionic server: ', ex.message));
  }

  return q.promise;
}

WHat do you think?

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant