I'm having a problem and not even really sure where to begin troubleshooting.
I'm using a slightly modified mocha-casperjs. CasperJS is a wrapper for PhantomJS. I'm trying to integrate Growl notifications on completion of my tests.
I can execute notifications successfully before the call to mocha.run, like so:
execFile("terminal-notifier", ["-message", "Tests Begin"], null, function (err, stdout, stderr) {
console.log("execFileSTDOUT:", JSON.stringify(stdout))
console.log("execFileSTDERR:", JSON.stringify(stderr))
})
// for convience, expose the current runner on the mocha global
mocha.runner = mocha.run(function() {
...
However, this fails:
// for convience, expose the current runner on the mocha global
mocha.runner = mocha.run(function() {
execFile("terminal-notifier", ["-message", "Tests Begin"], null, function (err, stdout, stderr) {
console.log("execFileSTDOUT:", JSON.stringify(stdout))
console.log("execFileSTDERR:", JSON.stringify(stderr))
})
...
I don't know much about the guts of Mocha, or of PhantomJS. Could Mocha be eating the stdout or something like that, causing the execFile call to fail? Is there something else I'm not getting?
Thanks, Kevin
--- UPDATE ---
The plot thickens. Just including the casper object kills execFile.
Running the below code with "casperjs test.js" successfully outputs execFile. Uncommenting the casper object results in no output.
'use strict';
var process = require("child_process");
var spawn = process.spawn;
var execFile = process.execFile;
execFile("ls", ["-lF", "/usr"], null, function (err, stdout, stderr) {
console.log("execFileSTDOUT:", JSON.stringify(stdout));
console.log("execFileSTDERR:", JSON.stringify(stderr));
});
//var casper = require('casper').create();
//casper.exit();
You can try changing the log line to this one:
Then, you should see, if execFile is called: execFileSTDOUT:""