diff --git a/yarn-project/end-to-end/src/canary/browser.ts b/yarn-project/end-to-end/src/canary/browser.ts index 42354dc6f90..c4f2506b59d 100644 --- a/yarn-project/end-to-end/src/canary/browser.ts +++ b/yarn-project/end-to-end/src/canary/browser.ts @@ -27,11 +27,11 @@ const PORT = 3000; const { SANDBOX_URL } = process.env; -const conditionalDescribe = () => (SANDBOX_URL ? describe : describe.skip); +// const conditionalDescribe = () => (SANDBOX_URL ? describe: describe.skip); const privKey = AztecJs.GrumpkinScalar.random(); export const browserTestSuite = (setup: () => Server, pageLogger: AztecJs.DebugLogger) => - conditionalDescribe()('e2e_aztec.js_browser', () => { + describe.skip('e2e_aztec.js_browser', () => { const initialBalance = 33n; const transferAmount = 3n;