@@ -36,7 +36,7 @@ module.exports = {
3636 'get concepts' : function ( test ) {
3737 var alchemy = new Alchemy ( apikey ) ;
3838 alchemy . concepts ( testURL , { } , function ( error , result ) {
39- console . log ( result ) ;
39+ // console.log(result);
4040 test . ifError ( error ) ;
4141 //test.deepEqual(result.status, "OK");
4242 test . done ( ) ;
@@ -45,7 +45,7 @@ module.exports = {
4545 'get entities' : function ( test ) {
4646 var alchemy = new Alchemy ( apikey ) ;
4747 alchemy . entities ( testURL , { } , function ( error , result ) {
48- console . log ( result ) ;
48+ // console.log(result);
4949 test . ifError ( error ) ;
5050 //test.deepEqual(result.status, "OK");
5151 test . done ( ) ;
@@ -54,7 +54,7 @@ module.exports = {
5454 'get keywords' : function ( test ) {
5555 var alchemy = new Alchemy ( apikey ) ;
5656 alchemy . keywords ( testURL , { } , function ( error , result ) {
57- console . log ( result ) ;
57+ // console.log(result);
5858 test . ifError ( error ) ;
5959 //test.deepEqual(result.status, "OK");
6060 test . done ( ) ;
@@ -63,7 +63,7 @@ module.exports = {
6363 'get russian keywords' : function ( test ) {
6464 var alchemy = new Alchemy ( apikey ) ;
6565 alchemy . keywords ( "http://www.framingeinstein.com/russian.html" , { } , function ( error , result ) {
66- console . log ( result ) ;
66+ // console.log(result);
6767 test . ifError ( error ) ;
6868 //test.deepEqual(result.status, "OK");
6969 test . done ( ) ;
0 commit comments