-
Notifications
You must be signed in to change notification settings - Fork 3
(IDAS-422) CBOS upgrade to node v22 #3098
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
16b1aca
c28d472
561363d
39ccf42
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 20 | ||
| 22.22.0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,3 +9,4 @@ coverage | |
| apps/e2e/cypress/fixtures/* | ||
| .vscode | ||
| .build | ||
| .turbo | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| FROM node:20-alpine3.20 | ||
| FROM node:22-alpine3.22 | ||
| WORKDIR /src/app | ||
|
|
||
| ARG GIT_SHA | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,6 +13,17 @@ export class GeographicalInformationSection extends SectionBase { | |
| } | ||
|
|
||
| fillLocation(location) { | ||
| // Debug: Check if we're on the right page | ||
| cy.get('body').then(($body) => { | ||
| cy.log('Current page body HTML snippet: ' + $body.html().substring(0, 500)); | ||
| }); | ||
|
|
||
| // Debug: List all form inputs on the page | ||
| cy.get('input').then(($inputs) => { | ||
| const inputIds = $inputs.map((i, el) => el.id).get(); | ||
| cy.log('Available input IDs: ' + inputIds.join(', ')); | ||
| }); | ||
|
|
||
|
Comment on lines
+16
to
+26
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why has this been included?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I removed it in my local, I didn't commit it earlier. removed. |
||
| this.elements.location().clear().type(location); | ||
| } | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23355,7 +23355,7 @@ exports[`applications documentation Document search GET /case/123/project-docume | |
| <li class="govuk-pagination__item"><a class="govuk-link govuk-pagination__link" href="/applications-service/case/123/project-documentation/search-results?q=word&page=2" | ||
| aria-label="Page 2"> 2</a> | ||
| </li> | ||
| <li class="govuk-pagination__item govuk-pagination__item--ellipses">⋯</li> | ||
| <li class="govuk-pagination__item govuk-pagination__item--ellipsis">⋯</li> | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's unusual. How come the snapshot was out of date without a corresponding template change? Also, the CSS and template is still using the old spelling, so I am a bit confused where is this coming from? |
||
| <li class="govuk-pagination__item"><a class="govuk-link govuk-pagination__link" href="/applications-service/case/123/project-documentation/search-results?q=word&page=8" | ||
| aria-label="Page 8"> 8</a> | ||
| </li> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please revert to the original comment, otherwise this will need to be updated with every node update and can be missed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reverted