tap-test-helpers
v0.0.3
Published
test helpers for node tap
Downloads
3
Readme
tap-test-helpers
Install
npm install tap-test-helpers
Docs
- link only works when checkout repo and preview README locally
API
Test Helpers API Class
TestHelpers.Api.methodsExposed(['method', 'names'], module)
// 1 test shd fail; Object.twoPot is not exposed
TestHelpers.Api.methodsExposed(['onePot', 'twoPot', 'threePot'], {
'onePot': function(argument) {},
'threePot': function(argument) {}
});