Skip to content
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

test: flaky check for Abort spec #38428

Merged
merged 3 commits into from
Jan 3, 2025
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
Expand Up @@ -7,10 +7,11 @@ import {
entityItems,
} from "../../../../support/Objects/ObjectsCore";

describe(
describe.skip(
"Abort Action Execution",
{ tags: ["@tag.Datasource", "@tag.Git", "@tag.AccessControl"] },
function () {
//Open Bug: https://github.com/appsmithorg/appsmith/issues/38165
it("1. Bug #14006, #16093 - Cancel request button should abort API action execution", function () {
apiPage.CreateAndFillApi(
dataManager.dsValues[dataManager.defaultEnviorment].mockApiUrl + "00",
Expand All @@ -31,8 +32,9 @@ describe(

// Queries were resolving quicker than we could cancel them
// Commenting this out till we can find a query that resolves slow enough for us to cancel its execution.
//Open Bug: https://github.com/appsmithorg/appsmith/issues/38165

it("2. Bug #14006, #16093 Cancel request button should abort Query action execution", function () {
it.skip("2. Bug #14006, #16093 Cancel request button should abort Query action execution", function () {
dataSources.CreateDataSource("MySql");
cy.get("@dsName").then(($dsName) => {
dataSources.CreateQueryAfterDSSaved(
Expand Down
Loading