Test your Cordova based apps with Calabash iOS.
#Usage Add the plugin to your project
cordova plugin add https://github.com/paulpatarinski/Cordova-Calabash-iOS-Plugin
Edit www/js/index.js
and add the following code inside onDeviceReady
if(window.calabash){
var success = function() {
console.log("Calabash Server started");
}
var failure = function() {
console.log("Error starting Calabash Server");
}
calabash.start(success, failure);
}