Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch 6 fixes #43 #46

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 8 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
sudo: false
language: node_js
node_js:
- "4"
- "6"
- 4
- 5
- 6
- 7
- 8
- node

before_script:
- npm install -g grunt-cli
202 changes: 83 additions & 119 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"node": ">= 0.10.0"
},
"devDependencies": {
"chai": "3.5.0",
"chai": "4.1.2",
"grunt": "1.0.1",
"grunt-contrib-jshint": "1.1.0",
"grunt-contrib-watch": "1.0.0",
Expand All @@ -56,7 +56,7 @@
"grunt-readme": "0.4.5",
"grunt-templates-dylang": "1.0.12",
"load-grunt-tasks": "3.5.2",
"mocha": "3.2.0",
"mocha": "4.0.0",
"np": "2.16.0",
"proxyquire": "1.7.10",
"time-grunt": "1.4.0"
Expand Down
4 changes: 2 additions & 2 deletions test/github.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ describe('github', function () {

it('should have something come back for changelog', function (done) {
github.changelog('dylang/changelog', 'latest').then(function (results) {
expect(results).to.be.an.object;
expect(results).to.be.an('object');
})
.catch(function(err){throw err;})
.done(done);
});

it('should have something come back for commit messages', function (done) {
github.commitMessages({repo: 'dylang/changelog'}).then(function (results) {
expect(results).to.be.an.object;
expect(results).to.be.an('object');
})
.catch(function(err){throw err;})
.done(done);
Expand Down
2 changes: 1 addition & 1 deletion test/npm.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ describe('npm', function () {

it('should have something come back for pageHistory', function (done) {
npm.packageHistory('changelog').then(function (results) {
expect(results).to.be.an.object;
expect(results).to.be.an('object');
})
.catch(function(err){throw err;})
.done(done);
Expand Down