I have a script that sequentially executes 2 instructions as following:
node server.js
node tests.js
- Server.js initializes a local Node.js + Express server
- Tests.js executes some unit tests on that server
The problem is that the first instruction keeps listening for requests, so the second is never executed.
Is it possible to solve this behaviour?

