Some symbols not picked up by documentation infrastructure
- 主要语言
- TypeScript
- 星标
- 25k
- 派生
- 6.8k
- 平均合并
- 1 天 8 小时
- 30 天内合并 PR
- 91
描述
### Is this a regression?
- [ ] Yes, this behavior used to work in the previous version
### The previous version in which this bug was not present was
_No response_
### Description
`MatSelect` waits for a CSS `animationend` event to close, which never fires in the JSDOM test environment.
- Zone change detection works
- Zoneless CD with `provideNoopAnimations()` works
Since (a) the dependency on the `animations` package was removed in Sept 2025, and (b) within the `animations` package, `provideNoopAnimations()` is scheduled to go away in `v23`, I am wondering what the recommended path will be.
Our current workaround is to inject `ANIMATION_MODULE_TYPE` in our tests. e.g.)
```ts
await TestBed.configureTestingModule({
imports: [...],
providers: [
provideZonelessChangeDetection(),
{ provide: ANIMATION_MODULE_TYPE, useValue: 'NoopAnimations' },
],
}).compileComponents();
```
### Reproduction
StackBlitz link:
Steps to reproduce:
1.
2.
### Expected Behavior
A standardized way to test without `provideNoopAnimations()`.
### Actual Behavior
Tests that depend on waiting for the mat-select overlay to close fail.
### Environment
- Angular:
- CDK/Material:
- Browser(s):
- Operating System (e.g. Windows, macOS, Ubuntu):
贡献指南
调研方向
首先,在 JSDOM 测试环境中重现 MatSelect overlay 关闭失败的问题,并追踪其等待 CSS 动画事件 animationend 的位置。将该路径与使用 ANIMATION_MODULE_TYPE 和 provideNoopAnimations() 的现有 TestBed 变通方案进行比较;完成的标准是识别并记录一条标准化的测试路径。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- angular, typescript
- 领域
- frontend, testing
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 需要澄清
- 新手友好度
- 35/100