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

[Donot merge]: testing cypress flakiness #35874

Closed
wants to merge 27 commits into from
Closed
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
276f28a
fix: added a limited test to check the failures
AmanAgarwal041 Aug 26, 2024
ac60ca5
fix: api multipart
AmanAgarwal041 Aug 26, 2024
0cb3558
fix: mysql 2 spec for checking the 12th index instead of 17
AmanAgarwal041 Aug 27, 2024
46349b5
fix: changed the page name to page1 from stores
AmanAgarwal041 Aug 27, 2024
c1d3112
fix: api multipart to use ted api
AmanAgarwal041 Aug 27, 2024
8a0bca2
fix: changing only the mysql2 spec and reverting other changes
AmanAgarwal041 Aug 28, 2024
69c8719
Merge branch 'release' of github.com:appsmithorg/appsmith into cypres…
AmanAgarwal041 Sep 2, 2024
8ed1298
Merge branch 'release' of github.com:appsmithorg/appsmith into cypres…
AmanAgarwal041 Sep 5, 2024
b84cf4f
fix: testing mongo spec fix
AmanAgarwal041 Sep 5, 2024
a246fd5
fix: testing mongo spec fix
AmanAgarwal041 Sep 6, 2024
8538c57
fix: testing mongo spec fix
AmanAgarwal041 Sep 6, 2024
7136122
fix: testing mongo spec fix
AmanAgarwal041 Sep 6, 2024
a83388a
fix: testing mongo spec fix
AmanAgarwal041 Sep 6, 2024
2319acf
fix: testing mongo spec fix
AmanAgarwal041 Sep 7, 2024
2bcac45
fix: testing mongo spec fix
AmanAgarwal041 Sep 9, 2024
aece969
fix: testing mongo spec fix
AmanAgarwal041 Sep 9, 2024
6aff87d
fix: testing mongo spec fix
AmanAgarwal041 Sep 9, 2024
e29d372
fix: testing mongo spec fix
AmanAgarwal041 Sep 10, 2024
506cec8
fix: testing mongo spec fix
AmanAgarwal041 Sep 10, 2024
2d381f2
fix: testing mongo spec fix
AmanAgarwal041 Sep 10, 2024
ae19c25
Merge branch 'release' of github.com:appsmithorg/appsmith into cypres…
AmanAgarwal041 Sep 10, 2024
85eb601
fix: testing mongo spec fix
AmanAgarwal041 Sep 10, 2024
02e7f62
Merge branch 'release' of github.com:appsmithorg/appsmith into cypres…
AmanAgarwal041 Sep 10, 2024
272d1b9
fix: testing mongo spec fix
AmanAgarwal041 Sep 10, 2024
f2587be
fix: testing mongo spec fix
AmanAgarwal041 Sep 10, 2024
4da52dc
fix: testing mongo spec fix
AmanAgarwal041 Sep 11, 2024
52703b2
fix: testing mongo spec fix
AmanAgarwal041 Sep 11, 2024
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 @@ -141,8 +141,18 @@ describe(
),
);
agHelper.ClickButton("Confirm");
assertHelper.AssertNetworkStatus("@postExecute", 200);
assertHelper.AssertNetworkStatus("@postExecute", 200);
cy.wait(["@postExecute", "@postExecute"]).then((interceptions: any[]) => {
const responseStatus0 = Number(
interceptions[0].body.responseMeta.status,
);
const responseStatus1 = Number(
interceptions[1].body.responseMeta.status,
);
expect(responseStatus0).to.equal(200);
expect(responseStatus1).to.equal(200);
});
// assertHelper.AssertNetworkStatus("@postExecute", 200);
// assertHelper.AssertNetworkStatus("@postExecute", 200);
table.ReadTableRowColumnData(0, 6, "v2", 200).then(($cellData) => {
expect($cellData).to.eq("Coffee Mug");
});
Expand Down
2 changes: 1 addition & 1 deletion app/client/cypress/limited-tests.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# To run only limited tests - give the spec names in below format:
cypress/e2e/Regression/ClientSide/Templates/Fork_Template_spec.js
cypress/e2e/Regression/ServerSide/GenerateCRUD/MongoURI_Spec.ts

# For running all specs - uncomment below:
#cypress/e2e/**/**/*
Expand Down
Loading