Skip to content

Commit

Permalink
docs: change everythingExists to allExist in JSDoc for expectAllExist…
Browse files Browse the repository at this point in the history
… (#APD-483)
  • Loading branch information
JohannesDienst-askui committed Jun 20, 2024
1 parent be1e5ba commit 43baa29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/askui-nodejs/src/execution/ui-control-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ export class UiControlClient extends ApiCommands {
*
* // Validate existence
* const exists = await aui.expectAllExist([...]);
* exists.everythingExists // true when every element exists
* exists.allExist // true when every element exists
*
* // Check which elements do not exist
* // with the elements property
Expand All @@ -714,7 +714,7 @@ export class UiControlClient extends ApiCommands {
* @property {RelationsForConvenienceMethods} params.relation.type - The type of relation.
* @property {string} query.relation.text - The label or text associated with the
* related element or state.
* @returns {ExpectAllExistResult.everythingExists} - If every element exists.
* @returns {ExpectAllExistResult.allExist} - If every element exists.
* @returns {ExpectAllExistResult.elements} - ExpectExistenceElement[].
*/
async expectAllExist(
Expand Down

0 comments on commit 43baa29

Please sign in to comment.