From ccaa7d130b6cf1bdf1709d9a5f13ab697a9619bb Mon Sep 17 00:00:00 2001 From: Rupendra0 Date: Tue, 11 Nov 2025 12:01:26 +0530 Subject: [PATCH] test: enable offline test by renaming file to correct pattern The offline test file was named 'offline._cy.js' which doesn't match Cypress's test file pattern '*.cy.js', causing the test to be silently skipped. Renamed to 'offline.cy.js' to enable execution. This ensures PWA offline functionality is properly tested in CI/CD. --- cypress/e2e/{offline._cy.js => offline.cy.js} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename cypress/e2e/{offline._cy.js => offline.cy.js} (100%) diff --git a/cypress/e2e/offline._cy.js b/cypress/e2e/offline.cy.js similarity index 100% rename from cypress/e2e/offline._cy.js rename to cypress/e2e/offline.cy.js