Conversation
🦋 Changeset detectedLatest commit: b556bca The changes in this PR will be included in the next version bump. This PR includes changesets to release 84 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Contributor
|
Size Change: +2.17 kB (+0.12%) Total Size: 1.85 MB
ℹ️ View Unchanged
|
TheSonOfThomp
approved these changes
May 21, 2025
| <CodeContextProvider | ||
| // @ts-expect-error - other ids are missing but not needed for test | ||
| lgids={{ | ||
| lgIds={{ |
Collaborator
There was a problem hiding this comment.
Is this testing that a copyButton with a non-default id can still be queried?
| export const DEFAULT_LGID_ROOT = 'lg-button'; | ||
|
|
||
| export const getLgIds = (root: `lg-${string}` = DEFAULT_LGID_ROOT) => { | ||
| export const getLgIds = (root: LgIdString = DEFAULT_LGID_ROOT) => { |
Collaborator
There was a problem hiding this comment.
Not necessary here, but it might be worth creating a GetLgIdsFunction function type, and maybe a return type?
type GetLgIdsFunction = (root?: LgIdString) => {
root: LgIdString,
...
}
Collaborator
|
@shaneeza this should be good to go |
shaneeza
commented
Jun 20, 2025
Collaborator
Author
|
note: a few of these are missing updates to |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
✍️ Proposed changes
Updates
data-lgidanddata-testidto use scope based test IDs. These test IDs are generated using the helper utilitygetLgIds. For more information check out the section in the styleguide about getLgIds.🎟 Jira ticket: LG-4899
✅ Checklist
For bug fixes, new features & breaking changes
pnpm changesetand documented my changesFor new components
🧪 How to test changes