Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Drobiazko committed Oct 21, 2014
1 parent 4f50c94 commit dfb590d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion elasticio.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
exports.HttpComponent = require("./lib/httpComponent.js");
exports.HttpComponent = require("./lib/httpComponent.js").HttpComponent;
exports.messages = require("./lib/messages.js");
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "elasticio-node",
"description": "Node.js API for the elastic.io integration platform",
"version": "0.0.2",
"version": "0.0.3",
"author": {
"name": "elastic.io GmbH",
"email": "[email protected]"
Expand Down
5 changes: 3 additions & 2 deletions spec/httpComponent.spec.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
describe('Http Component', function () {

var nock = require('nock');
var HttpComponent = require('../lib/httpComponent.js').HttpComponent;
var messages = require('../lib/messages.js');
var elasticio = require('../elasticio.js');
var HttpComponent = elasticio.HttpComponent;
var messages = elasticio.messages;

it('GET', function () {

Expand Down

0 comments on commit dfb590d

Please sign in to comment.