Skip to content
Snippets Groups Projects
Unverified Commit 8eebd1ec authored by Ariya Hidayat's avatar Ariya Hidayat Committed by GitHub
Browse files

Quarantine flaky tests (#13682) (#13683)

* Quarantine flaky tests (#13682)

* Add TODO note re: `describeWithToken`

Co-authored-by: Nemanja Glumac 
parent eed37bbe
Branches
Tags
No related merge requests found
Showing
with 21 additions and 11 deletions
......@@ -3,10 +3,12 @@ import {
signInAsAdmin,
restore,
modal,
describeWithToken,
// describeWithToken,
} from "__support__/cypress";
describeWithToken("drill through", () => {
// [quarantine] flaky
// TODO: change back to `describeWithToken`
describe.skip("drill through", () => {
before(restore);
beforeEach(signInAsAdmin);
......
......@@ -8,7 +8,8 @@ import {
const SAMPLE_DB_URL = "/admin/datamodel/database/1";
describe("scenarios > admin > datamodel > editor", () => {
// [quarantine] flaky
describe.skip("scenarios > admin > datamodel > editor", () => {
beforeEach(() => {
restore();
signInAsAdmin();
......
import { restore, signInAsAdmin, popover, modal } from "__support__/cypress";
describe("scenarios > admin > datamodel > metrics", () => {
// [quarantine] flaky
describe.skip("scenarios > admin > datamodel > metrics", () => {
before(restore);
beforeEach(() => {
signInAsAdmin();
......
......@@ -7,7 +7,8 @@ import {
} from "__support__/cypress";
// Ported from `segments.e2e.spec.js`
describe("scenarios > admin > datamodel > segments", () => {
// [quarantine] flaky
describe.skip("scenarios > admin > datamodel > segments", () => {
before(restore);
beforeEach(() => {
signInAsAdmin();
......
......@@ -6,7 +6,8 @@ import {
popover,
} from "__support__/cypress";
describe("scenarios > admin > settings", () => {
// [quarantine] flaky
describe.skip("scenarios > admin > settings", () => {
before(restore);
beforeEach(signInAsAdmin);
......
......@@ -13,7 +13,8 @@ function saveDashboard() {
cy.findByText("You're editing this dashboard.").should("not.exist");
}
describe("scenarios > dashboard", () => {
// [quarantine] flaky
describe.skip("scenarios > dashboard", () => {
beforeEach(() => {
restore();
signInAsAdmin();
......
......@@ -13,7 +13,8 @@ const MOCK_PULSE_FORM_INPUT = {
},
};
describe("scenarios > pulse", () => {
// [quarantine] flaky
describe.skip("scenarios > pulse", () => {
before(restore);
beforeEach(signInAsAdmin);
it("should be able get to the new pulse page from the nav bar", () => {
......
import { signInAsAdmin, withSampleDataset, restore } from "__support__/cypress";
describe("scenarios > question > nested (metabase#12568)", () => {
// [quarantine] flaky
describe.skip("scenarios > question > nested (metabase#12568)", () => {
before(() => {
restore();
signInAsAdmin();
......
......@@ -7,7 +7,8 @@ import {
sidebar,
} from "__support__/cypress";
describe("scenarios > visualizations > drillthroughs > chart drill", () => {
// [quarantine] flaky
describe.skip("scenarios > visualizations > drillthroughs > chart drill", () => {
before(restore);
beforeEach(signInAsAdmin);
......
......@@ -17,7 +17,7 @@ function addCardToNewDash(dash_name, card_id) {
});
}
describe("scenarios > visualizations > drillthroughs > dash_drill", () => {
describe.skip("scenarios > visualizations > drillthroughs > dash_drill", () => {
describe("title click action", () => {
before(restore);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment