Skip to content

Commit

Permalink
Merge pull request #137 from layer5labs/fix-crash
Browse files Browse the repository at this point in the history
remove extension load check
  • Loading branch information
aabidsofi19 authored Dec 23, 2024
2 parents 2fcb573 + 2c58f07 commit 5ee081b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress-action/cypress/support/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const beforeEachCallback = () => {
doInitialSetup();
cy.intercept(extension.path).as(extension.alias);
cy.visit(MESHMAP_PATH);
cy.wait(waitFor(extension.alias), { timeout: 15000 });
// cy.wait(waitFor(extension.alias), { timeout: 15000 });
};

export const setThemeMode = async (mode) => {
Expand All @@ -34,7 +34,7 @@ export const beforeEachCallbackForCustomUrl = (customPath, theme = "light") => {
doInitialSetup();
cy.intercept(extension.path).as(extension.alias);
cy.visit(customPath);
cy.wait(waitFor(extension.alias), { timeout: 60_000 });
// cy.wait(waitFor(extension.alias), { timeout: 60_000 });
};

export const saveGraph = (cy) => {
Expand Down

0 comments on commit 5ee081b

Please sign in to comment.