MetaMask / snaps-cli

A CLI for developing MetaMask plugins.
ISC License
37 stars 26 forks source link

Improve test coverage #126

Closed rekmarks closed 3 years ago

rekmarks commented 3 years ago

Closes #74.

This PR adds unit tests for cli.ts, and achieves 100% coverage for everything except branches, which are left at 86%. The lower branch coverage is mainly due to solitary if statements in manifestHandler.ts whose implicit else clauses are never tested.

In order to achieve the increased test coverage, some internal files have been refactored. All changes should be non-breaking.