@@ -327,7 +327,7 @@ describe('Appium', function () {
327327 assert . ok ( vy . match ( / v x : - \d \d 0 0 0 \. 0 p p s / ) , 'to be like 21000.0 pps' )
328328 } )
329329
330- it ( 'should react on touchPerform action' , async ( ) => {
330+ it ( 'should react on touchPerform action @quick ' , async ( ) => {
331331 await app . touchPerform ( [
332332 {
333333 action : 'press' ,
@@ -469,7 +469,7 @@ describe('Appium', function () {
469469
470470 describe ( 'see element : #seeElement, #dontSeeElement' , ( ) => {
471471 it ( 'should check visible elements on page @quick' , async ( ) => {
472- await app . resetApp ( )
472+ // await app.resetApp()
473473 await app . seeElement ( '//android.widget.Button[@content-desc = "buttonTestCD"]' )
474474 await app . dontSeeElement ( '#something-beyond' )
475475 await app . dontSeeElement ( '//input[@id="something-beyond"]' )
@@ -478,13 +478,13 @@ describe('Appium', function () {
478478
479479 describe ( '#click @quick' , ( ) => {
480480 it ( 'should click by accessibility id' , async ( ) => {
481- await app . resetApp ( )
481+ // await app.resetApp()
482482 await app . tap ( '~startUserRegistrationCD' )
483483 await app . seeElement ( '//android.widget.TextView[@content-desc="label_usernameCD"]' )
484484 } )
485485
486486 it ( 'should click by xpath' , async ( ) => {
487- await app . resetApp ( )
487+ // await app.resetApp()
488488 await app . tap ( '//android.widget.ImageButton[@content-desc = "startUserRegistrationCD"]' )
489489 await app . seeElement ( '//android.widget.TextView[@content-desc="label_usernameCD"]' )
490490 } )
0 commit comments