README
Graphlet Utilities
This module contains common functionality that can be reused in any graphlet.
Importing the Library into a Graphlet
Add the following dependency to your graphlet's package.json:
{
"dependencies": {
...
"graphlet-utils": "file:../graphlet-utils"
}
}
Testing
- jest is used as testing framework
- call
npx jestto execute the tests- use
--watchargument for starting jest in watch mode - use
--coverageargument for calculating code coverage
- use