Skip to content

Commit 3db4094

Browse files
committed
s/20/21
1 parent 213ad4d commit 3db4094

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Angular 20
1+
# Angular 21
22

3-
E2E test app for Angular 20 and `@sentry/angular`.
3+
E2E test app for Angular 21 and `@sentry/angular`.

dev-packages/e2e-tests/test-applications/angular-21/angular.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": 1,
44
"newProjectRoot": "projects",
55
"projects": {
6-
"angular-20": {
6+
"angular-21": {
77
"projectType": "application",
88
"schematics": {},
99
"root": "",
@@ -13,7 +13,7 @@
1313
"build": {
1414
"builder": "@angular-devkit/build-angular:application",
1515
"options": {
16-
"outputPath": "dist/angular-20",
16+
"outputPath": "dist/angular-21",
1717
"index": "src/index.html",
1818
"browser": "src/main.ts",
1919
"polyfills": ["zone.js"],
@@ -55,10 +55,10 @@
5555
"builder": "@angular-devkit/build-angular:dev-server",
5656
"configurations": {
5757
"production": {
58-
"buildTarget": "angular-20:build:production"
58+
"buildTarget": "angular-21:build:production"
5959
},
6060
"development": {
61-
"buildTarget": "angular-20:build:development"
61+
"buildTarget": "angular-21:build:development"
6262
}
6363
},
6464
"defaultConfiguration": "development"

dev-packages/e2e-tests/test-applications/angular-21/src/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ import { RouterOutlet } from '@angular/router';
88
template: `<router-outlet></router-outlet>`,
99
})
1010
export class AppComponent {
11-
title = 'angular-20';
11+
title = 'angular-21';
1212
}

dev-packages/e2e-tests/test-applications/angular-21/src/app/home/home.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { RouterLink } from '@angular/router';
77
imports: [RouterLink],
88
template: `
99
<main>
10-
<h1>Welcome to Sentry's Angular 20 E2E test app</h1>
10+
<h1>Welcome to Sentry's Angular 21 E2E test app</h1>
1111
<ul>
1212
<li><a id="navLink" [routerLink]="['/users', '123']">Visit User 123</a></li>
1313
<li><a id="redirectLink" [routerLink]="['/redirect1']">Redirect</a></li>
@@ -21,6 +21,6 @@ import { RouterLink } from '@angular/router';
2121
})
2222
export class HomeComponent {
2323
throwError() {
24-
throw new Error('Error thrown from Angular 20 E2E test app');
24+
throw new Error('Error thrown from Angular 21 E2E test app');
2525
}
2626
}

dev-packages/e2e-tests/test-applications/angular-21/src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<title>Angular 20</title>
5+
<title>Angular 21</title>
66
<base href="/" />
77
<meta name="viewport" content="width=device-width, initial-scale=1" />
88
<link rel="icon" type="image/x-icon" href="favicon.ico" />

dev-packages/e2e-tests/test-applications/angular-21/start-event-proxy.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ import { startEventProxyServer } from '@sentry-internal/test-utils';
22

33
startEventProxyServer({
44
port: 3031,
5-
proxyServerName: 'angular-20',
5+
proxyServerName: 'angular-1',
66
});

0 commit comments

Comments
 (0)