0.1.2 • Published 8 years ago

protractor-ng-hint-plugin v0.1.2

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

ngHint Plugin

ngHint adds run-time hinting to AngularJS projects. This plugin bubbles those hints up to the command line so they can be used in automated testing.

You enable this plugin in your config file:

exports.config = {
 plugins: [{
   package: 'protractor-ng-hint-plugin',

   asTests: {Boolean},
   excludeURLs: {(String|RegExp)[]}
 }]
};

asTests specifies if the plugin should generate passed/failed test results based on the ngHint output or instead log the results to the console. Defaults to true.

excludeURLs specifies a list of URLs for which ngHint results should be ignored. Defaults to []