Here is what i need:
- Must be able to run test in Jenkins
- I want to test API, so I don't really care about functions and objects, I just want to make sure that when I send POST to /api/users.json, I will see that user in json array from GET /api/users/.
Is there any way I can run app and test in same process?
UPD.
Problem is half-solved: I have use mocha + should + restler to test my app. It is working. But How to set up jenkins to run these tests?