-
Notifications
You must be signed in to change notification settings - Fork 80
verification
Isaac Braun edited this page Sep 24, 2025
·
9 revisions
When an issue has been given the 3 - installed
lifecycle label, the next step is for the Product Engineers (PEs) to verify that the installed code fulfills the acceptance criteria without introducing any new bugs or regressions.
To view issues that are installed and need to be picked up for verification along with those assigned to yourself, use this GitHub filter:
sort:updated-desc is:issue is:open label:"3 - installed" (no:assignee OR assignee:@me)
Use this list as a general, but not exact, guideline for verifying issues.
- Assign the issue to yourself.
- Read through the issue to gain an full understanding of the situation and look for any possible side affects.
- Test the original state, looking at the incorrect behavior and general behavior to be aware of the full context.
- Test the new state, ensuring the fix or feature is in place and meets the acceptance criteria. Additionally, look carefully for any regressions or bugs. Think critically about what else the change could affect. See the testing new state section for more details.
- Once verified, change the lifecycle label from
3 - installed
to4 - verified
and ensure the correct milestone is assigned. - Close the issue with a comment, providing what version it was verified with and as much context as possible. Typically, this may follow a format of "Verified with
X.X.X-next.XX
via {{CodePen URL}}" OR "Verified withX.X.X-next.XX
locally" with the inclusion of a photo/video/GIF that shows the change.
There are a a few common methods used to test behavior changes:
-
CodePen: many times the issue author will include a link to a CodePen or Component Sample that displays the wrong/unexpected behavior. Cloning the CodePen or opening the Sample as a CodePen is often the easiest way to test the new state. In the new CodePen, change the Calcite CDN import to the
@next
version and make any requires code changes. -
Locally: if CodePen is not a good environment for the situation, you can test changes with the Component Demos pages on the
dev
branch and include a photo/video in the closing comment that displays the change. -
Documentation: for changes affecting the public documentation of components, run the Calcite Documentation Site locally using a
@next
version of Calcite. To do so, adjust the@esri/calcite-components--internal-doc
version in thepackage.json
file to a specific"X.X.X.-next.XX"
version and runnpm install
. This will fetch the specified version of documentation and set the version for Component Samples. To revert, undo the version change in thepackage.json
file and runnpm install
again.
- Using exclusively mouse interactions, test acceptance criteria and prior behavior.
- Using exclusively keyboard interactions, test acceptance criteria and prior behavior.
- Test for any possible regressions newly introduced bugs.
- When it might be affected, test with assistive technologies. For VM access, see requesting a VM.
- If a new component property is introduced, ensure that the property has been added to the possible arguments configuration in the component's Storybook
stories.ts
file. - For code refactoring changes with no intended change in behavior, there is no specific proof to display, but ensure that the component functions as expected without any regressions or bugs.
When testing/verifying new components, the process changes. Use the list below as a general guide.
- Test the general functionality/behavior of the component.
- Compare styling/visual behavior with the final Figma specifications.
- Confirm the properties, attributes, methods, and events are working as intended.
- Make sure there are tests covering any required props/attributes.
- Have 1 or 2 other PEs do a pass over the component to reduce the changes of missing anything.