diff --git a/amplify.yml b/amplify.yml index da0cf8fb5..2733e4c72 100644 --- a/amplify.yml +++ b/amplify.yml @@ -28,7 +28,7 @@ frontend: test: artifacts: baseDirectory: /website/cypress - configFilePath: "/report/mochawesome.json" + configFilePath: "report/mochawesome.json" files: - "**/*.png" - "**/*.mp4" diff --git a/website/blog/2026-03-31-axios-vulnerability-supply-chain-attack.md b/website/blog/2026-03-31-axios-vulnerability-supply-chain-attack.md new file mode 100644 index 000000000..0816530d3 --- /dev/null +++ b/website/blog/2026-03-31-axios-vulnerability-supply-chain-attack.md @@ -0,0 +1,12 @@ +--- +title: "No Impact from Recent Axios Vulnerability in WaveMaker Mobile Apps" +author: "WaveMaker Team" +--- + +Mobile apps built with WaveMaker use Axios as a dependency. However, the version in use is not one of the affected version. + +For reference: [Axios Supply Chain Attack Pushes Cross-Platform RAT via Compromised npm Account](https://thehackernews.com/2026/03/axios-supply-chain-attack-pushes-cross.html) + +**No action is required.** + + diff --git a/website/cypress/e2e/basic.cy.js b/website/cypress/e2e/basic.cy.js index f793a3183..4c3003c59 100644 --- a/website/cypress/e2e/basic.cy.js +++ b/website/cypress/e2e/basic.cy.js @@ -9,10 +9,11 @@ describe("Top Navigation in web & mobile", function () { hamburgerMenu: ".hamburger-menu" }; + Cypress.on("uncaught:exception", () => false); beforeEach(function () { - cy.visit('http://localhost:3000/learn/') - Cypress.on('uncaught:exception', (err, runnable) => { return false; }) + cy.visit("/"); + cy.get(".navbar").should("be.visible"); }); it("Verifies top nav has 6 options in desktop browser", function () {