Skip to content

Commit

Permalink
Removed console.log calles from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
framingeinstein committed Jun 27, 2013
1 parent ef176a6 commit 67a0dab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module.exports = {
'get concepts': function(test) {
var alchemy = new Alchemy(apikey);
alchemy.concepts(testURL, {}, function(error, result) {
console.log(result);
//console.log(result);
test.ifError(error);
//test.deepEqual(result.status, "OK");
test.done();
Expand All @@ -45,7 +45,7 @@ module.exports = {
'get entities': function(test) {
var alchemy = new Alchemy(apikey);
alchemy.entities(testURL, {}, function(error, result) {
console.log(result);
//console.log(result);
test.ifError(error);
//test.deepEqual(result.status, "OK");
test.done();
Expand All @@ -54,7 +54,7 @@ module.exports = {
'get keywords': function(test) {
var alchemy = new Alchemy(apikey);
alchemy.keywords(testURL, {}, function(error, result) {
console.log(result);
//console.log(result);
test.ifError(error);
//test.deepEqual(result.status, "OK");
test.done();
Expand All @@ -63,7 +63,7 @@ module.exports = {
'get russian keywords': function(test) {
var alchemy = new Alchemy(apikey);
alchemy.keywords("http://www.framingeinstein.com/russian.html", {}, function(error, result) {
console.log(result);
//console.log(result);
test.ifError(error);
//test.deepEqual(result.status, "OK");
test.done();
Expand Down

0 comments on commit 67a0dab

Please sign in to comment.