Skip to content

Commit

Permalink
Skip local mode tests in Query due to security
Browse files Browse the repository at this point in the history
  • Loading branch information
canmingir committed Jul 1, 2024
1 parent 11411f1 commit 960d79b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { defineConfig } from "cypress";

const config = defineConfig({
defaultCommandTimeout: 60000,
chromeWebSecurity: false,
component: {
devServer: {
framework: "react",
Expand Down
3 changes: 2 additions & 1 deletion cypress/e2e/query.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ describe("Query", () => {
});
});

describe("Local Mode", () => {
describe.skip("Local Mode", () => {
beforeEach(() => {
cy.setup("IDE", "SEED", "LOCAL");
cy.fixture("PROJECTS/LOCAL/project.json").as("project");
Expand All @@ -105,6 +105,7 @@ describe("Query", () => {

cy.waitEvent("CONTAINER_LOADED");

// TODO This does not pass GitHub security in headless chrome
cy.runSandbox();

cy.getBySel("menu-Query").click();
Expand Down

0 comments on commit 960d79b

Please sign in to comment.