Skip to content

Commit

Permalink
for pr
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-start-nhs committed Dec 17, 2024
1 parent 4ede94a commit 99b87a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/cypress/e2e/0-ndr-core-tests/homepage.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe('Home Page', () => {
});

it('displays service banner', { tags: 'regression' }, () => {
cy.get('.govuk-phase-banner__content__tag').should('have.text', 'New Service');
cy.get('.govuk-phase-banner__content__tag').should('have.text', 'New service');
cy.get('.govuk-phase-banner__text').should(
'have.text',
'Your feedback will help us to improve this service.',
Expand Down
2 changes: 1 addition & 1 deletion app/src/components/layout/phaseBanner/PhaseBanner.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('PhaseBanner', () => {
it('renders PhaseBanner with content', () => {
renderComponent();

expect(screen.getByText('New Service')).toBeInTheDocument();
expect(screen.getByText('New service')).toBeInTheDocument();

expect(screen.getByText(/Your/i)).toBeInTheDocument();
expect(screen.getByText(/feedback/i)).toBeInTheDocument();
Expand Down

0 comments on commit 99b87a3

Please sign in to comment.