Skip to content

chore(browser-tests): skip some editor tests #244

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -153,7 +153,7 @@ describe("&query URL param", () => {
cy.getSelectedLines().should("have.length", 4);
});

it("should not append query if it already exists in editor", () => {
it.skip("should not append query if it already exists in editor", () => {
cy.visit(baseUrl);
const query = "select x\nfrom long_sequence(1);\n\n-- a\n-- b\n-- c";
cy.typeQuery(query).clickRun();
@@ -253,7 +253,7 @@ describe("errors", () => {
});
});

describe("running query with F9", () => {
describe.skip("running query with F9", () => {
before(() => {
cy.visit(baseUrl);
});