-
Notifications
You must be signed in to change notification settings - Fork 916
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
[Data Explorer] Add subject test id for testing data-shared-attribute #5196
[Data Explorer] Add subject test id for testing data-shared-attribute #5196
Conversation
Signed-off-by: abbyhu2000 <[email protected]>
Codecov Report
@@ Coverage Diff @@
## main #5196 +/- ##
==========================================
+ Coverage 66.72% 66.76% +0.03%
==========================================
Files 3278 3278
Lines 62999 62999
Branches 10031 10031
==========================================
+ Hits 42037 42059 +22
+ Misses 18571 18473 -98
- Partials 2391 2467 +76
Flags with carried forward coverage won't be shown. Click here to find out more. |
@@ -176,6 +176,7 @@ export const DataGridTable = ({ | |||
data-shared-item="" | |||
data-title={title} | |||
data-description={description} | |||
data-test-subj="discoverTable" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice, heads-up fixing. issue with PRs that i'm fixing.
not a blocker for this PR.
The backport to
To backport manually, run these commands in your terminal: # Navigate to the root of your repository
cd $(git rev-parse --show-toplevel)
# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add ../.worktrees/OpenSearch-Dashboards/backport-2.x 2.x
# Navigate to the new working tree
pushd ../.worktrees/OpenSearch-Dashboards/backport-2.x
# Create a new branch
git switch --create backport/backport-5196-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 3024c6a8afbd3e19529bb660ee176b3862296742
# Push it to GitHub
git push --set-upstream origin backport/backport-5196-to-2.x
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/OpenSearch-Dashboards/backport-2.x Then, create a pull request where the |
Signed-off-by: abbyhu2000 <[email protected]> (cherry picked from commit 3024c6a) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
(cherry picked from commit 3024c6a) Signed-off-by: abbyhu2000 <[email protected]> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
…ject#5196) Signed-off-by: abbyhu2000 <[email protected]> Signed-off-by: Willie Hung <[email protected]>
…ject#5196) Signed-off-by: abbyhu2000 <[email protected]>
Description
Add a subject test id for testing
data-shared-attribute
for the discover table.