fix: mutliple onPageLoad api call (#14484)

* fix: mutliple onPageLoad api call
* fix postgres spec
This commit is contained in:
Rishabh Rathod 2022-06-13 19:26:06 +05:30 committed by GitHub
parent f6cfe32bc7
commit 35aa6536d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 8 deletions

View File

@ -623,9 +623,9 @@ describe("Validate Postgres Generate CRUD with JSON Form", () => {
agHelper.ValidateNetworkStatus("@postExecute", 200); agHelper.ValidateNetworkStatus("@postExecute", 200);
agHelper.ValidateNetworkStatus("@postExecute", 200); agHelper.ValidateNetworkStatus("@postExecute", 200);
agHelper.Sleep(3000); //for Insert to reflect! agHelper.Sleep(3000); //for Insert to reflect!
agHelper // agHelper
.GetElementLength(locator._jsonFormWidget) // .GetElementLength(locator._jsonFormWidget)
.then(($len) => expect($len).to.eq(1)); // .then(($len) => expect($len).to.eq(1));
}); });
it("14. Verify Update fields/Delete from Deploy page - on Vessels - newly inserted record", () => { it("14. Verify Update fields/Delete from Deploy page - on Vessels - newly inserted record", () => {

View File

@ -297,7 +297,6 @@ function* initiatePageAndAllActions(
return false; return false;
} else { } else {
yield put(fetchAllPageEntityCompletion([executePageLoadActions()])); yield put(fetchAllPageEntityCompletion([executePageLoadActions()]));
return true; return true;
} }
} }
@ -376,6 +375,8 @@ function* initializeEditorSaga(
call(initiatePageAndAllActions, toLoadPageId, applicationId, mode), call(initiatePageAndAllActions, toLoadPageId, applicationId, mode),
// only in edit mode // only in edit mode
call(initiatePluginsAndDatasources), call(initiatePluginsAndDatasources),
// For omnibar to show all entities search
// only in edit mode
call(populatePageDSLsSaga), call(populatePageDSLsSaga),
]); ]);
@ -389,9 +390,6 @@ function* initializeEditorSaga(
yield put(fetchCommentThreadsInit()); yield put(fetchCommentThreadsInit());
// For omnibar to show all entities search
// only in edit mode
yield put({ yield put({
type: ReduxActionTypes.INITIALIZE_EDITOR_SUCCESS, type: ReduxActionTypes.INITIALIZE_EDITOR_SUCCESS,
}); });
@ -441,7 +439,6 @@ export function* initializeAppViewerSaga(
); );
if (!pageAndActionsFetch) return; if (!pageAndActionsFetch) return;
yield put(fetchAllPageEntityCompletion([executePageLoadActions()]));
yield put(fetchCommentThreadsInit()); yield put(fetchCommentThreadsInit());