diff --git a/src/server/common/helpers/start-server.test.js b/src/server/common/helpers/start-server.test.js
index 2e4e6f4..8a020f6 100644
--- a/src/server/common/helpers/start-server.test.js
+++ b/src/server/common/helpers/start-server.test.js
@@ -42,7 +42,7 @@ describe('#startServer', () => {
createServerSpy = vi.spyOn(createServerImport, 'createServer')
hapiServerSpy = vi.spyOn(hapi, 'server')
- })
+ }, 30000)
afterAll(() => {
vi.unstubAllEnvs()
diff --git a/src/server/common/templates/layouts/page.njk b/src/server/common/templates/layouts/page.njk
index fdd8ce1..7c2fd1a 100644
--- a/src/server/common/templates/layouts/page.njk
+++ b/src/server/common/templates/layouts/page.njk
@@ -42,9 +42,9 @@
}) }}
{{ govukPhaseBanner({
tag: {
- text: "BETA"
+ text: "Beta"
},
- html: 'This is a new service - your feedback will help improve it.'
+ html: 'This is a new service. Help us improve it and give your feedback(opens in new tab).'
}) }}
diff --git a/src/server/get-help/controller.js b/src/server/get-help/controller.js
index a3e6e9b..804336d 100644
--- a/src/server/get-help/controller.js
+++ b/src/server/get-help/controller.js
@@ -9,11 +9,12 @@ export const getHelpController = {
heading: 'Glamshire County Council',
breadcrumbs: [
{
- text: 'Local Authority Payments (LAPs) home',
+ text: 'LAPs home',
href: '/'
},
{
- text: 'Get help'
+ text: 'Get help',
+ href: '/'
}
]
})
diff --git a/src/server/get-help/controller.test.js b/src/server/get-help/controller.test.js
index 20f89be..6ee33b4 100644
--- a/src/server/get-help/controller.test.js
+++ b/src/server/get-help/controller.test.js
@@ -22,7 +22,7 @@ describe('#getHelpController', () => {
expect(statusCode).toBe(statusCodes.ok)
// Since result is HTML, assert that it contains the breadcrumb text
- expect(result).toContain('Local Authority Payments (LAPs) home')
+ expect(result).toContain('LAPs home')
expect(result).toContain('Get help')
})
})
diff --git a/src/server/get-help/index.njk b/src/server/get-help/index.njk
index 2fbd29b..0730b3e 100644
--- a/src/server/get-help/index.njk
+++ b/src/server/get-help/index.njk
@@ -5,67 +5,53 @@
{% from "govuk/components/notification-banner/macro.njk" import govukNotificationBanner %}
- {% set html %}
-
- You have 7 days left to send your application.
-
- {% endset %}
+{{ appHeading({
+ text: heading,
+ caption: "Get help"
- {{ govukNotificationBanner({
- html: html
}) }}
- {% from "govuk/components/table/macro.njk" import govukTable %}
- {% from "govuk/components/tag/macro.njk" import govukTag %}
-
-
-
- Your local authority's bank details
-
- {{ govukTag({
- text: "UNCONFIRMED",
- classes: "govuk-tag--red"
- }) }}
-
-
-{% from "govuk/components/table/macro.njk" import govukTable %}
-
-{{ govukTable({
- firstCellIsHeader: true,
- rows: [
- [
- {
- text: "First 6 weeks"
- },
- {
- text: "£109.80 per week"
- }
- ],
- [
- {
- text: "Next 33 weeks"
- },
- {
- text: "£109.80 per week"
- }
- ],
- [
- {
- text: "Total estimated pay"
- },
- {
- text: "£4,282.20"
- }
- ]
- ]
-}) }}
-
-{% from "govuk/components/details/macro.njk" import govukDetails %}
-
-{{ govukDetails({
- summaryText: "Help with nationality",
- text: "We need to know your nationality so we can work out which elections you’re entitled to vote in. If you cannot provide your nationality, you’ll have to send copies of identity documents through the post."
-}) }}
-
+
+
{% endblock %}
\ No newline at end of file