Jasmine plugin for group testing
npm install jasmine-groupfdescribe to focus on several related test cases;
npm install jasmine-group --save-dev
`
Please note: This plugin is designed for running with Karma, the functionality may not working if only install this plugin.
Also if you have 'karma-jasmine-group' in your package.json devDependencies list, this plugin will be installed automatically.
See karma-jasmine-group for more details.Configuration
Please see karma-jasmine-group for the settings in your Karma configuration.Usage
Once you have configured your Karma configuration, you can simple to replace 'describe' with 'gdescribe' and add the group name as the first parameter:
`javascript
gdescribe('group1', 'TestSuit description', function() {
it('TestCase description', function() {
......
});
});
``LICENSE file for details.