瀏覽代碼

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' });
+  });
+
 });