https://github.com/meteor-velocity/html-reporter
HTML reporter for Meteor velocity testing framework
https://github.com/meteor-velocity/html-reporter
Last synced: 29 days ago
JSON representation
HTML reporter for Meteor velocity testing framework
- Host: GitHub
- URL: https://github.com/meteor-velocity/html-reporter
- Owner: meteor-velocity
- License: mit
- Created: 2014-06-05T22:52:19.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2016-05-03T04:06:39.000Z (about 9 years ago)
- Last Synced: 2025-04-15T01:52:59.250Z (29 days ago)
- Language: CSS
- Size: 412 KB
- Stars: 22
- Watchers: 4
- Forks: 20
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-meteor - velocity:html-reporter - HTML reporter for Meteor velocity testing framework. (Testing)
README
Velocity HTML Reporter
======================
HTML reporter for Meteor's [Velocity testing framework](https://velocity.meteor.com). This reporter
will show you test results in your app.## Installation
Install this and at least one Velocity-compatible testing framework then add this package:`meteor add velocity:html-reporter`
## Usage
If you want to hide the reporter in development mode, you can press
ctrl + v## Settings
You can set the position of the reporter by adding a settings file like this:```
{
"public": {
"velocity:html-reporter": {
"position": "bottom right",
"tab-index" : 1
}
}
}
```Available positional options are:
* `"top right"`
* `"top left"`
* `"bottom right"`
* `"bottom left"`The "tab-index" field is used for people with disabilities to access the reporter via keyboard
shortcuts.You may also be interested in the [`velocity:console-reporter` package](https://github.com/meteor-velocity/console-reporter/)