Skip to content

Commit

Permalink
Publish 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aldeed committed Apr 3, 2018
1 parent 5ba966c commit 7419d62
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 15 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## 0.5.1

- Fail with a message when mocha or a browser tests package does not properly pass the number of test failures
- Add browser policy to ensure that proper styling is always applied to test results shown in a browser

## 0.5.0

- Add colors for Nightmare
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ We welcome contributions. Before submitting a pull request, please check the fol
(5) Run eslint and fix any errors:

```bash
$ npm i
$ npm run lint
npm i
npm run lint
```
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

_Formerly published as dispatch:mocha. Originally created by [Dispatch](http://www.dispatch.me/) but now community maintained._

A Mocha test driver package for Meteor 1.3. This package reports server AND client test results in the server console and can be used for running tests on a CI server or locally. This achieves what `spacejam` does but without the need for a separate Node package.
A Mocha test driver package for Meteor. This package reports server AND client test results in the server console and can be used for running tests on a CI server or locally. This achieves what `spacejam` does but without the need for a separate Node package.

## Installation

Expand Down
4 changes: 2 additions & 2 deletions package/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Package.onUse(function onUse(api) {
]);

api.use([
'browser-policy',
'meteortesting:browser-tests@0.1.2'
'browser-policy@1.0.0',
'meteortesting:browser-tests@0.2.0'
], 'server');

api.mainModule('client.js', 'client');
Expand Down

0 comments on commit 7419d62

Please sign in to comment.