Yohei-Shiina 3 lat temu
rodzic
commit
e62cc1a66b

+ 46 - 45
packages/app/test/cypress/integration/20-basic-features/access-to-page.spec.ts

@@ -141,52 +141,53 @@ context('Access to Template Editing Mode', () => {
     cy.collapseSidebar(true);
     cy.collapseSidebar(true);
   });
   });
 
 
+  // TODO: 109057
+  // it('Access to Template Editor mode for only child pages successfully', () => {
+  //   cy.visit('/Sandbox/Bootstrap4', {  });
+  //   cy.waitUntilSkeletonDisappear();
+
+  //   cy.get('#grw-subnav-container').within(() => {
+  //     cy.getByTestid('open-page-item-control-btn').should('be.visible');
+  //     cy.getByTestid('open-page-item-control-btn').click();
+  //     cy.getByTestid('open-page-template-modal-btn').should('be.visible');
+  //     cy.getByTestid('open-page-template-modal-btn').click();
+  //   });
+
+  //   cy.getByTestid('page-template-modal').should('be.visible');
+  //   cy.screenshot(`${ssPrefix}-open-page-template-bootstrap4`);
+
+  //   cy.getByTestid('template-button-children').as('template-button-children');
+  //   cy.get('@template-button-children').should('be.visible').click();
+  //   cy.waitUntilSkeletonDisappear();
+
+  //   cy.getByTestid('navbar-editor').should('be.visible').then(()=>{
+  //     cy.url().should('include', '/_template#edit');
+  //     cy.screenshot();
+  //   });
+  // });
 
 
-  it('Access to Template Editor mode for only child pages successfully', () => {
-    cy.visit('/Sandbox/Bootstrap4', {  });
-    cy.waitUntilSkeletonDisappear();
-
-    cy.get('#grw-subnav-container').within(() => {
-      cy.getByTestid('open-page-item-control-btn').should('be.visible');
-      cy.getByTestid('open-page-item-control-btn').click();
-      cy.getByTestid('open-page-template-modal-btn').should('be.visible');
-      cy.getByTestid('open-page-template-modal-btn').click();
-    });
-
-    cy.getByTestid('page-template-modal').should('be.visible');
-    cy.screenshot(`${ssPrefix}-open-page-template-bootstrap4`);
-
-    cy.getByTestid('template-button-children').as('template-button-children');
-    cy.get('@template-button-children').should('be.visible').click();
-    cy.waitUntilSkeletonDisappear();
-
-    cy.getByTestid('navbar-editor').should('be.visible').then(()=>{
-      cy.url().should('include', '/_template#edit');
-      cy.screenshot();
-    });
-  });
-
-  it('Access to Template Editor mode including decendants successfully', () => {
-    cy.visit('/Sandbox/Bootstrap4', {  });
-    cy.waitUntilSkeletonDisappear();
-
-    cy.get('#grw-subnav-container').within(() => {
-      cy.getByTestid('open-page-item-control-btn').should('be.visible');
-      cy.getByTestid('open-page-item-control-btn').click();
-      cy.getByTestid('open-page-template-modal-btn').should('be.visible');
-      cy.getByTestid('open-page-template-modal-btn').click();
-    });
-    cy.getByTestid('page-template-modal').should('be.visible');
-
-    cy.getByTestid('template-button-decendants').as('template-button-decendants');
-    cy.get('@template-button-decendants').should('be.visible').click();
-    cy.waitUntilSkeletonDisappear();
-
-    cy.getByTestid('navbar-editor').should('be.visible').then(()=>{
-      cy.url().should('include', '/__template#edit');
-      cy.screenshot();
-    });
-  });
+  // TODO: 109057
+  // it('Access to Template Editor mode including decendants successfully', () => {
+  //   cy.visit('/Sandbox/Bootstrap4', {  });
+  //   cy.waitUntilSkeletonDisappear();
+
+  //   cy.get('#grw-subnav-container').within(() => {
+  //     cy.getByTestid('open-page-item-control-btn').should('be.visible');
+  //     cy.getByTestid('open-page-item-control-btn').click();
+  //     cy.getByTestid('open-page-template-modal-btn').should('be.visible');
+  //     cy.getByTestid('open-page-template-modal-btn').click();
+  //   });
+  //   cy.getByTestid('page-template-modal').should('be.visible');
+
+  //   cy.getByTestid('template-button-decendants').as('template-button-decendants');
+  //   cy.get('@template-button-decendants').should('be.visible').click();
+  //   cy.waitUntilSkeletonDisappear();
+
+  //   cy.getByTestid('navbar-editor').should('be.visible').then(()=>{
+  //     cy.url().should('include', '/__template#edit');
+  //     cy.screenshot();
+  //   });
+  // });
 
 
 });
 });