Include a test client: ``` javascript var app = new Kolba.App(); var client = app.getClient(); var payload = {"somePayload": "some value"}; client.post('/home', payload); ``` This way there's no need to put the app to listen in a socket in order to test it.
Include a test client:
This way there's no need to put the app to listen in a socket in order to test it.