Skip to content

Commit

Permalink
XIVY-12291 add missing await
Browse files Browse the repository at this point in the history
  • Loading branch information
ivy-lgi committed Sep 17, 2024
1 parent ad9ddad commit ef7a4b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrations/standalone/tests/pageobjects/Detail.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export class Detail {
await this.name.locator.fill(name);
await this.type.locator.fill(type);
if (persistent !== (await this.persistent.isChecked())) {
this.persistent.click();
await this.persistent.click();
}
await this.comment.locator.fill(comment);
await this.annotations.locator.fill(annotations);
Expand Down

0 comments on commit ef7a4b7

Please sign in to comment.