فهرست منبع

confirm the existence of 'mjx-container' when a guest user visits to /Sandbox/Math

Yuki Takei 3 سال پیش
والد
کامیت
357ba6029b
1فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  1. 3 0
      packages/app/test/cypress/integration/21-basic-features-for-guest/access-to-page.spec.ts

+ 3 - 0
packages/app/test/cypress/integration/21-basic-features-for-guest/access-to-page.spec.ts

@@ -22,6 +22,9 @@ context('Access to page by guest', () => {
 
   it('/Sandbox/Math is successfully loaded', () => {
     cy.visit('/Sandbox/Math');
+
+    cy.get('mjx-container').should('be.visible');
+
     cy.screenshot(`${ssPrefix}-sandbox-math`);
   });