@sap/grunt-sapui5-bestpractice-test
v2.0.4
Published
Grunt tasks for running unit and integration tests
Downloads
10,767
Readme
Running Unit and Integration Tests
This module is used to support running unit and integration tests via a Grunt task.
Usage
Copy this command and run it.
npm install --save-dev @sap/grunt-sapui5-bestpractice-testThis will add the grunt-sapui5-bestpractice-test module to your package.json file.
Add the following script to your package.json file to enable running the unit and integration tests via npm.
"scripts": { "test": "grunt unit_and_integration_tests" }Add this code to the Gruntfile.js file.
grunt.loadNpmTasks("@sap/grunt-sapui5-bestpractice-test"); grunt.registerTask("unit_and_integration_tests", [ "test" ] ); grunt.config.merge({ coverage_threshold: { statements: 0, branches: 100, functions: 0, lines: 0 } });Run the unit and integration tests.
npm test
