Skip to content

Commit

Permalink
CCM-6323: fix id after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-corrigan1 committed Oct 31, 2024
1 parent 32b56d5 commit f1a68e4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ exports[`renders page 1`] = `
</div>
<details
class="nhsuk-details"
data-testid="naming-your-templates"
data-testid="how-to-name-your-template"
>
<summary
class="nhsuk-details__summary"
Expand Down Expand Up @@ -662,7 +662,7 @@ exports[`renders page one error 1`] = `
</div>
<details
class="nhsuk-details"
data-testid="naming-your-templates"
data-testid="how-to-name-your-template"
>
<summary
class="nhsuk-details__summary"
Expand Down Expand Up @@ -1253,7 +1253,7 @@ exports[`renders page with multiple errors 1`] = `
</div>
<details
class="nhsuk-details"
data-testid="naming-your-templates"
data-testid="how-to-name-your-template"
>
<summary
class="nhsuk-details__summary"
Expand Down Expand Up @@ -1829,7 +1829,7 @@ exports[`renders page with preloaded field values 1`] = `
</div>
<details
class="nhsuk-details"
data-testid="naming-your-templates"
data-testid="how-to-name-your-template"
>
<summary
class="nhsuk-details__summary"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class TemplateMgmtCreateEmailPage extends TemplateMgmtBasePage {
'[data-testid="personalisation-details"]'
);
this.namingYourTemplate = page.locator(
'[data-testid="naming-your-templates"]'
'[data-testid="how-to-name-your-template"]'
);
this.messageFormatting = new TemplateMgmtMessageFormatting(page);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ test.describe('Create NHS App Template Page', () => {
'[data-testid="headings-details"]',
'[data-testid="bold-text-details"]',
'[data-testid="link-and-url-details"]',
'[data-testid="naming-your-templates"]',
'[data-testid="how-to-name-your-template"]',
];

for (const section of detailsSections) {
Expand Down

0 comments on commit f1a68e4

Please sign in to comment.