Skip to content
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

chore(springwolf-ui): update to angular 19 #1119

Merged
merged 9 commits into from
Dec 20, 2024
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.26"
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.3"
org-mockito = "5.14.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ void processClassTest() {
Map<String, Operation> operations = operationsInClassScannerAdapter.scan();

// then
assertThat(operations).containsExactlyEntriesOf(Map.of("operation1", operation1, "operation2", operation2));
assertThat(operations)
.containsExactlyInAnyOrderEntriesOf(Map.of("operation1", operation1, "operation2", operation2));
}

@Test
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
Loading