소스 검색

imprv: access to trash page test

asami-n 4 년 전
부모
커밋
95c417cb49
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      packages/app/test/cypress/integration/2-basic-features/access-to-page.spec.ts

+ 5 - 0
packages/app/test/cypress/integration/2-basic-features/access-to-page.spec.ts

@@ -30,4 +30,9 @@ context('Access to page', () => {
     cy.screenshot(`${ssPrefix}-sandbox-headers`, { capture: 'viewport' });
     cy.screenshot(`${ssPrefix}-sandbox-headers`, { capture: 'viewport' });
   });
   });
 
 
+  it('/trash is successfully loaded', () => {
+    cy.visit('/trash', {  });
+    cy.screenshot(`${ssPrefix}-trash`, { capture: 'viewport' });
+  });
+
 });
 });