Skip to content

Commit

Permalink
chore(springwolf-ui): update to angular 19 (#1119)
Browse files Browse the repository at this point in the history
* chore(springwolf-ui): update to angular 19

Co-authored-by: Timon Back <[email protected]>

* chore(springwolf-ui): migrate to standalone components

Co-authored-by: Timon Back <[email protected]>

* test(ui): resolve setup-jest warning

* chore(springwolf-ui): adapt component tests

Co-authored-by: Timon Back <[email protected]>

* chore(springwolf-ui): re-add smoke-test for complete app

Co-authored-by: Timon Back <[email protected]>

* test(core): fix flaky assertion for operation entries

Co-authored-by: Timon Back <[email protected]>

* test(e2e): update springwolf-ui channels selector

* chore: Bump nodeVersion from 22.9.0 to 22.12.0, npm from 10.8.3 to 10.9.0

* chore(e2e): Bump @playwright/test from 1.44.0 to 1.49.1, @types/node from 20.12.11 to 22.10.2

---------

Co-authored-by: Timon Back <[email protected]>
  • Loading branch information
sam0r040 and timonback authored Dec 20, 2024
1 parent a4d7e33 commit 711cb4b
Show file tree
Hide file tree
Showing 29 changed files with 2,928 additions and 8,377 deletions.
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ io-swagger-core-v3 = "2.2.27"
jackson-core = "2.18.2"
kotlin = "2.1.0"
node-plugin = "7.1.0"
nodeVersion = "22.9.0"
npm = "10.8.3"
nodeVersion = "22.12.0"
npm = "10.9.0"
openapi-gradle = "1.9.0"
org-junit-jupiter = "5.11.4"
org-mockito = "5.14.2"
Expand Down
54 changes: 30 additions & 24 deletions springwolf-examples/e2e/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions springwolf-examples/e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.44.0",
"@types/node": "^20.12.11"
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.2"
}
}
4 changes: 2 additions & 2 deletions springwolf-examples/e2e/util/page_object.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
import { Locator, Page } from "@playwright/test";

export function locateChannels(locator: Page | Locator) {
return locator.locator("section#channels article");
return locator.locator("article#channels article");
}

export function locateChannelItems(locator: Page | Locator) {
return locator.locator("section#channels article > mat-card");
return locator.locator("article#channels article > mat-card");
}

export function locateChannel(
Expand Down
6 changes: 3 additions & 3 deletions springwolf-ui/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"builder": "@angular/build:application",
"options": {
"baseHref": "./",
"outputPath": {
Expand Down Expand Up @@ -73,7 +73,7 @@
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"builder": "@angular/build:dev-server",
"configurations": {
"production": {
"buildTarget": "springwolf-ui:build:production"
Expand All @@ -85,7 +85,7 @@
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n"
"builder": "@angular/build:extract-i18n"
}
}
}
Expand Down
Loading

0 comments on commit 711cb4b

Please sign in to comment.