Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/meteor-velocity/html-reporter

HTML reporter for Meteor velocity testing framework
https://github.com/meteor-velocity/html-reporter

Last synced: about 1 month ago
JSON representation

HTML reporter for Meteor velocity testing framework

Lists

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/)