Skip to content

Commit 2481ea8

Browse files
committed
chore: update Angular dependencies to version 19.2.x and add coverage reports to .gitignore
1 parent 582942e commit 2481ea8

4 files changed

Lines changed: 12 additions & 7 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ yarn-error.log
3333
.sass-cache/
3434
/connect.lock
3535
/coverage
36+
/playwright-report/
37+
/test-results/
3638
/libpeerconnection.log
3739
testem.log
3840
/typings

e2e/smoke.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ test.describe('Smoke tests', () => {
44
test('loads home route and core layout', async ({ page }) => {
55
await page.goto('/');
66

7-
await expect(page).toHaveTitle(/Angular \+ Tailwind Template/i);
7+
await expect(page).toHaveTitle(/Angular Template/i);
88
await expect(page.getByText(/D-Stack Ready/i).first()).toBeVisible();
99
await expect(page.getByRole('link', { name: /Datenschutz/i })).toBeVisible();
1010
});

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@
8686
"devDependencies": {
8787
"@lhci/cli": "^0.15.1",
8888
"@playwright/test": "^1.53.2",
89-
"@angular-devkit/build-angular": "^19.0.0",
90-
"@angular/cli": "^19.0.0",
91-
"@angular/compiler-cli": "^19.0.0",
89+
"@angular-devkit/build-angular": "19.2.22",
90+
"@angular/cli": "19.2.22",
91+
"@angular/compiler-cli": "19.2.19",
9292
"@types/jasmine": "^5.1.4",
9393
"@types/node": "^22.10.2",
9494
"autoprefixer": "^10.4.23",
@@ -107,6 +107,9 @@
107107
"tailwindcss": "^3.4.16",
108108
"typescript": "~5.6.3"
109109
},
110+
"overrides": {
111+
"@angular/build": "19.2.22"
112+
},
110113
"lint-staged": {
111114
"*.ts": [
112115
"prettier --write"

0 commit comments

Comments
 (0)