Commit 5dcb837
Fix broken TestBed chaining in example-extensions specs (#5446)
Four demo-extension specs had a stray comma after configureTestingModule
(`}),` then `.compileComponents()`), a pre-existing TS6.0 syntax error
(TS1109) that surfaced once the toolchain stopped tolerating it. Drop the
comma so the .compileComponents() call chains correctly.
These specs are demo extensions: not in the production ng build nor the
vitest test projects, so they did not block the gate — but they should
still parse.1 parent e4fe329 commit 5dcb837
4 files changed
Lines changed: 4 additions & 4 deletions
File tree
- src/frontend/packages/example-extensions/src
- acme-login
- acme-support-info
- app-action-extension
- app-tab-extension
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
| 27 | + | |
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
| |||
src/frontend/packages/example-extensions/src/acme-support-info/acme-support-info.component.spec.ts
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
21 | | - | |
| 21 | + | |
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
src/frontend/packages/example-extensions/src/app-tab-extension/app-tab-extension.component.spec.ts
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
0 commit comments