1.1.3 • Published 6 years ago
tslint-sinon v1.1.3
tslint-sinon
This package provides additional TSLint rules that help to enforce some best practices when using Sinon mocking library.
Supported rules
sinon-prefer-resolves- suggests to usestub.resolves(x)instead ofstub.returns(Promise.resolve(x)).sinon-prefer-sandbox- suggests to create fakes viasandboxinstead of creating them directly.
How to install
- Run
npm install --save-dev tslint-sinon - Add to your
tslint.json:
"rules": {
"sinon-prefer-resolves": true,
"sinon-prefer-sandbox": true
},
"rulesDirectory": [
"tslint-sinon"
]