This module is Serverless Framework plugin. Create UnitTest boilerplate in a Serverless Project.
Generated .travis.yml
and tests/all.js
.
Execute npm install in your Serverless project.
$ npm install serverless-unittest-boilerplate
Add the plugin to your s-project.json file
"plugins": [
"serverless-unittest-boilerplate"
]
Add the scripts to pakage.json file
"scripts": {
"test": "export NODE_PATH=`npm root -g` && mocha tests/all"
}
Install mocha
and chai
. Run command below;
$ npm install chai --save-dev
$ npm install mocha --save-dev
Run command below.
$ serverless test scaffold