https://github.com/angular/protractor-ng-hint-plugin
Adds run-time hinting to AngularJS projects
https://github.com/angular/protractor-ng-hint-plugin
Last synced: 9 months ago
JSON representation
Adds run-time hinting to AngularJS projects
- Host: GitHub
- URL: https://github.com/angular/protractor-ng-hint-plugin
- Owner: angular
- License: mit
- Archived: true
- Created: 2015-11-06T22:33:23.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-11-17T22:57:53.000Z (over 10 years ago)
- Last Synced: 2025-10-06T00:33:44.358Z (9 months ago)
- Language: JavaScript
- Size: 171 KB
- Stars: 2
- Watchers: 6
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
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:
```js
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 []