Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ language: node_js
node_js:
- 0.8
- 0.10
- 0.11.10
git:
depth: 1000
depth: 1
matrix:
fast_finish: true
allow_failures:
- node_js: 0.11
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ nodegit
> Node.js libgit2 bindings

**v0.1.0** [![Build
Status](https://travis-ci.org/tbranyen/nodegit.png)](https://travis-ci.org/tbranyen/nodegit)
Status](https://travis-ci.org/nodegit/nodegit.png)](https://travis-ci.org/nodegit/nodegit)

Maintained by Tim Branyen [@tbranyen](http://twitter.com/tbranyen), Michael
Robinson [@codeofinterest](http://twitter.com/codeofinterest), and Nick Kallen [@nk](http://twitter.com/nk), with help from
Expand Down
2 changes: 1 addition & 1 deletion test/repo.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ exports.openInvalidRepo = function(test){

// Test invalid repository
git.Repo.open('repos/nonrepo', function(error, repository) {
test.equals(error.message, "Could not find repository from 'repos/nonrepo'");
test.ok(error instanceof Error);
test.done();
});
};
Expand Down