(conf,run,load)
| 19 | } |
| 20 | |
| 21 | function defineAbcClientAndLoad(conf,run,load) { |
| 22 | ss.client.init(); |
| 23 | |
| 24 | var client = defineAbcClient(conf); |
| 25 | if (run) { |
| 26 | run(); |
| 27 | } |
| 28 | if (load !== false) { |
| 29 | ss.client.load(); |
| 30 | |
| 31 | ss.tasks.defaults(); |
| 32 | } |
| 33 | |
| 34 | return client; |
| 35 | } |
| 36 | |
| 37 | module.exports.reset = function() { |
| 38 | ss.client.unload(); |
nothing calls this directly
no test coverage detected