/// var smartcli = require("./index.js"); var getAnswerTest = function() { smartcli.getAnswer('How do you feel?',function(answer){ console.log('The answer is: ' + answer); getChoiceTest(); }); }; var getChoiceTest = function() { smartcli.getChoice('What to you like best?',['Cars','Planes','Boats'],function(answer){ console.log('The answer is: ' + answer); getCwdTest(); }); }; var getCwdTest = function(){ console.log('The current directory is: ' + smartcli.getCwd()); }; getAnswerTest();