Skip to content

Commit

Permalink
Merge pull request #29 from mmoulton/develop
Browse files Browse the repository at this point in the history
Release 0.2.1
  • Loading branch information
mmoulton committed Feb 5, 2014
2 parents 2739873 + ef3aeb7 commit 5cf8196
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 26 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -45,3 +45,8 @@
* Switched to official `node-coveralls` module for interfacing with coveralls.io.
Special thanks to @spenceralger for the pull request. (resolved #25)
* Updating all dependencies to latest versions and shrinkwrapping using `npm shrinkwrap`

### 0.2.1 (Feb 5, 2014)

* Updated coffeescript dependency for mocha tests to use 1.7.x where you now must explicitly register the compiler
* Fixed typos
4 changes: 2 additions & 2 deletions lib/mocha.js
Expand Up @@ -160,7 +160,7 @@ function mocha(options, callback) {
if (options.coveralls) {
coveralls.getBaseOptions(function (err, opts) {
if (err) {
return callback(new Error('Unabel to fetch base options: ' + err.message));
return callback(new Error('Unable to fetch base options: ' + err.message));
}

if (options.coveralls.serviceJobId) {
Expand Down Expand Up @@ -221,4 +221,4 @@ function mocha(options, callback) {
}
});

}
}
38 changes: 16 additions & 22 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "grunt-mocha-cov",
"description": "Run Mocha server-side tests in Grunt with code coverage support and optional integration to coveralls.io.",
"version": "0.2.0",
"version": "0.2.1",
"author": "Mike Moulton <mike@meltmedia.com> (http://meltmedia.com)",
"contributors": [
"Gregg Caines <gregg@caines.ca> (https://github.com/cainus/node-coveralls)",
Expand Down
2 changes: 1 addition & 1 deletion test/mocha.js
Expand Up @@ -76,7 +76,7 @@ describe('Unit Tests', function () {
files: [__dirname + '/fixture/coffeescript.coffee'],
quiet: true,
reporter: 'json',
compilers: ['coffee:coffee-script']
compilers: ['coffee:coffee-script/register']
}, function (error) {
should.not.exist(error);
done();
Expand Down

0 comments on commit 5cf8196

Please sign in to comment.