Unit tests can be added for your App.
- After creating a new App using the
rab init AppName
command.- You will notice that there are a few new files when the app is created.
- The package.json file is used to make your app a local node application.
- The Gruntfile.js file holds the instructions for how to test your app.
- Install local dependencies for the testing environment using
npm install
. - Run the example test using
grunt
.