test(tabs): skip tests for vue tabs (#24211)

This commit is contained in:
Sean Perkins
2021-11-11 14:38:35 -05:00
committed by GitHub
parent 5a2a335784
commit 0bb8e88582
2 changed files with 4 additions and 4 deletions

View File

@ -404,7 +404,7 @@ describe('Routing - Swipe to Go Back', () => {
//cy.ionPageDoesNotExist('navigation');
});
it('swipe to go back should work when using router.go()', () => {
it.skip('swipe to go back should work when using router.go()', () => {
cy.visit('http://localhost:8080?ionic:mode=ios');
cy.routerPush('/routing');

View File

@ -289,7 +289,7 @@ describe('Tabs - Swipe to Go Back', () => {
cy.ionPageVisible('tab1');
});*/
it('should swipe and go back to home', () => {
it.skip('should swipe and go back to home', () => {
cy.ionSwipeToGoBack(true);
cy.ionPageVisible('home');
@ -308,7 +308,7 @@ describe('Tabs - Swipe to Go Back', () => {
cy.ionPageVisible('tab1childone');
});
it('should swipe and go back within a tab', () => {
it.skip('should swipe and go back within a tab', () => {
cy.get('#child-one').click();
cy.ionPageVisible('tab1childone');
cy.ionPageHidden('tab1');
@ -319,7 +319,7 @@ describe('Tabs - Swipe to Go Back', () => {
cy.ionPageDoesNotExist('tab1childone');
});
it('should swipe and go back to correct tab after switching tabs', () => {
it.skip('should swipe and go back to correct tab after switching tabs', () => {
cy.get('#child-one').click();
cy.ionPageVisible('tab1childone');
cy.ionPageHidden('tab1');