소스 검색

add VRT test for Mathjax

Yuki Takei 4 년 전
부모
커밋
b7735374c4
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' });
   });
 
+  it('/Sandbox/Math is successfully loaded', () => {
+    cy.visit('/Sandbox/Math');
+    cy.screenshot(`${ssPrefix}-sandbox-math`, { capture: 'viewport' });
+  });
+
 });