Skip to content

Commit

Permalink
Merge pull request #5053 from jithinv/EmailDialog
Browse files Browse the repository at this point in the history
anvil test cases for suite EmailDialog
  • Loading branch information
Lokesh Choudhary committed Feb 14, 2014
2 parents bd86114 + e218285 commit 0efc81b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions support/anvil/configSet/Resources/suites/ui/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ module.exports = new function() {
{name: "deleteCorrectRowIndex", timeout: 3000},
{name: "childrenArrayEmpty"},
{name: "orientationModesReturnNull"},
{name: "emailDialogAnimated"}
{name: "passingData", timeout: 10000}
{name: "webviewBasedOnURL", timeout: 10000},
{name: "setUserAgent", timeout: 10000},
Expand Down Expand Up @@ -570,6 +571,22 @@ module.exports = new function() {
}

<<<<<<< HEAD
<<<<<<< HEAD
//TIMOB-5855
this.emailDialogAnimated = function(testRun) {
var win = Ti.UI.createWindow({
backgroundColor:'blue'
});
win.addEventListener('open',function(e){
var email = Ti.UI.createEmailDialog();
valueOf(testRun, function(){
email.open({animated:false});
}).shouldNotThrowException();

finish(testRun);
});
win.open();
=======
//KitchenSink: Platform
this.passingData = function(testRun) {
var window = require('suites/ui/win_2');
Expand Down Expand Up @@ -604,6 +621,7 @@ module.exports = new function() {
}, 10000);
});
win1.open();
>>>>>>> 98a34fbf6cc4d45a6326aed91ba136303424eae0
=======
//TIMOB-974
this.webviewBasedOnURL = function(testRun) {
Expand Down

0 comments on commit 0efc81b

Please sign in to comment.