Dockerode Mock
Mocking module for Dockerode.
Usage
First install the package.
npm install --save-dev dockerode-mock
Next use a mocking library to replace the dockerode module with dockerode-mock.
Finally specify the overrides you wish to use before and after each test.
//Apply to all enginesdockeroverrides = 'GET /_ping': error: 'connection error' 'GET /containers/json?': ... //Apply to specific enginesdockeroverrides = 'GET 192.168.0.5/_ping': 'OK' 'GET 192.168.0.5:4243/_ping': 'OK' 'GET tcp://192.168.0.5:4243/_ping': error: 'connection error'