We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, Is it possible? Simple script
-cmd haxelib run munit test test.hxml --verbose -cmd haxelib run dox -i build -o docs -in "^com\."
In case of 1st line fails, I want script to stop. Possible?
The text was updated successfully, but these errors were encountered:
I am running test with nodejs. I modified completionHandler and now it works OK for me. But may be I did it bad way?
completionHandler
function completionHandler(successful:Bool):Void { try { #if flash flash.external.ExternalInterface.call("testResult", successful); #elseif js // js.Lib.eval("testResult(" + successful + ");"); Sys.exit(successful ? 0 : 1); #elseif sys Sys.exit(successful ? 0 : 1); #end } // if run from outside browser can get error which we can ignore catch (e:Dynamic) { } }
Sorry, something went wrong.
Hmm you're probably right - this call to testResult for JS only works in the browser.
testResult
No branches or pull requests
Hi,
Is it possible?
Simple script
In case of 1st line fails, I want script to stop.
Possible?
The text was updated successfully, but these errors were encountered: