Skip to content

Commit

Permalink
Merge branch 'release' of github.com:appsmithorg/appsmith into feat/3…
Browse files Browse the repository at this point in the history
…7854-request-integration
  • Loading branch information
AmanAgarwal041 committed Dec 9, 2024
2 parents 4946eab + 44288f1 commit 7a90a3f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,22 +160,19 @@ describe(
);
_.agHelper.GetNClick(OneClickBindingLocator.searchableColumn);
_.agHelper.GetNClick(
OneClickBindingLocator.columnDropdownOption(
"searchableColumn",
"imdb_id",
),
OneClickBindingLocator.columnDropdownOption("searchableColumn", "id"),
);
_.agHelper.GetNClick(OneClickBindingLocator.connectData);
_.table.WaitUntilTableLoad(0, 0, "v2");
_.propPane.OpenTableColumnSettings("imdb_id");
_.propPane.OpenTableColumnSettings("id");
_.propPane.TypeTextIntoField("Regex", "{{test}}");
_.debuggerHelper.AssertErrorCount(1);
_.propPane.ToggleSection("validation");
_.propPane.NavigateBackToPropertyPane();

_.debuggerHelper.OpenDebugger();
_.debuggerHelper.ClicklogEntityLink();
_.agHelper.GetNAssertContains(_.propPane._paneTitle, "imdb_id");
_.agHelper.GetNAssertContains(_.propPane._paneTitle, "id");
_.debuggerHelper.CloseBottomBar();
EditorNavigation.SelectEntityByName("Table1", EntityType.Widget);
_.entityExplorer.DeleteWidgetFromEntityExplorer("Table1");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ describe(
//Create and run query.

_.dataSources.EnterQuery(
"SELECT * FROM users ORDER BY id LIMIT 10;",
"SELECT * FROM users ORDER BY username LIMIT 10;",
1000,
);
_.dataSources.RunQuery();
Expand Down

0 comments on commit 7a90a3f

Please sign in to comment.