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: Cypress | Replace static with Dynamic waits - Part II #29557

Merged
merged 26 commits into from
Dec 13, 2023
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
93e9e9a
CommunityIssues_Spec.ts removed wait
Aishwarya-U-R Dec 12, 2023
6e8cc7c
run only
Aishwarya-U-R Dec 12, 2023
4a03257
EchoApiCMS_spec remove wait
Aishwarya-U-R Dec 12, 2023
8140e1f
ImportExportForkApplication_spec remove wait
Aishwarya-U-R Dec 12, 2023
22224ba
Apps/ImportExportForkApplication_spec.js fix
Aishwarya-U-R Dec 12, 2023
fa50741
run all
Aishwarya-U-R Dec 12, 2023
ccb6e3c
remove wait from others
Aishwarya-U-R Dec 12, 2023
98139f1
Promises_app spec fix
Aishwarya-U-R Dec 12, 2023
4820906
run all
Aishwarya-U-R Dec 12, 2023
f75aa8e
Listv2_BasicServerSideData_spec fix
Aishwarya-U-R Dec 12, 2023
3e2b18b
ListV2_PageNo_PageSize_spec fix
Aishwarya-U-R Dec 12, 2023
52257bb
/Datasources/MockDBs_Spec.ts fix
Aishwarya-U-R Dec 12, 2023
3ff46ab
Listv2_BasicServerSideData_spec fix
Aishwarya-U-R Dec 12, 2023
b27e6a9
ListV2_PageNo_PageSize_spec fix
Aishwarya-U-R Dec 12, 2023
7911808
Merge branch 'release' into test/dynamicwaitremove
Aishwarya-U-R Dec 13, 2023
a79e978
CommunityIssues_Spec clean up
Aishwarya-U-R Dec 13, 2023
752b6e4
ImportExportForkApplication_spec clean up
Aishwarya-U-R Dec 13, 2023
4484556
removing skips
Aishwarya-U-R Dec 13, 2023
ab477f7
cleanup
Aishwarya-U-R Dec 13, 2023
94cea34
cleanup
Aishwarya-U-R Dec 13, 2023
9b974bf
cleanup
Aishwarya-U-R Dec 13, 2023
1afa79a
cleanup
Aishwarya-U-R Dec 13, 2023
32025f7
fix
Aishwarya-U-R Dec 13, 2023
11a69b4
revert
Aishwarya-U-R Dec 13, 2023
bbe6299
revert
Aishwarya-U-R Dec 13, 2023
0a773a0
revert duplicate check
Aishwarya-U-R Dec 13, 2023
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
Prev Previous commit
Next Next commit
/Datasources/MockDBs_Spec.ts fix
  • Loading branch information
Aishwarya-U-R committed Dec 12, 2023
commit 52257bb8d9167ff08cff250fb90b9a939ce4a42f
4 changes: 2 additions & 2 deletions app/client/cypress/e2e/Sanity/Datasources/MockDBs_Spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe(
'SELECT * FROM public."users" LIMIT 10;',
);

dataSources.RunQueryNVerifyResponseViews(5); //minimum 5 rows are expected
dataSources.RunQueryNVerifyResponseViews(); //minimum 1 rows are expected
AppSidebar.navigate(AppSidebarButton.Data);
dataSources
.getDatasourceListItemDescription(mockDBName)
Expand All @@ -43,7 +43,7 @@ describe(
);

entityExplorer.CreateNewDsQuery(mockDBName);
dataSources.RunQueryNVerifyResponseViews(10, true);
dataSources.RunQueryNVerifyResponseViews(); //minimum 1 rows are expected
AppSidebar.navigate(AppSidebarButton.Data);
dataSources
.getDatasourceListItemDescription(mockDBName)
Expand Down