Skip to content
This repository has been archived by the owner on May 14, 2022. It is now read-only.

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gcfabri committed May 16, 2017
1 parent 4fd2aa2 commit ab70a4a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@

- Update base url from mock server to production

##### 1.0.4-alpha - 16 May 2017
##### 1.0.4-alpha - 16 May 2017

- Fix tests
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "pipefy-node",
"version": "1.0.4-alpha",
"version": "1.0.5-alpha",
"description": "An unofficial Pipefy API wrapper using node.js",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec",
"cover": "istanbul cover mocha -- -R spec test/*"
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"engines": {
"node": ">=6.10.3"
Expand Down
6 changes: 3 additions & 3 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ var pipefy = require('../index')({
'your_personal_access_token': process.env.PIPEFY_TOKEN
});

/*describe('#sampleFunction', function() {
it('should do something', function() {
var result = sampleFunction();
/*describe('#pipefy', function() {
it('should get personal information from API', function() {
var result = pipefy.getMe();
expect(result).to.equal('1');
});
});*/

0 comments on commit ab70a4a

Please sign in to comment.