我在使用Jest-Preset-Angular对从单独文件导入的主机元素上具有动画的组件运行测试时遇到问题(因此它可以在另一个组件中重用)。
例子.animation.ts
import { trigger } from '@angular/animations';
export const ExampleAnimationHost = { '[@example]': '' };
export const ExampleAnimationTrigger = trigger('example', []);
例子.component.ts
import { Component } from '@angular/core';
import { ExampleAnimationHost, ExampleAnimationTrigger } from './example.animation';
@Component({
selector: 'app-example',
templateUrl: './example.component.html',
styleUrls: ['./example.component.scss'],
animations: [ExampleAnimationTrigger],
host: ExampleAnimationHost,
})
export class ExampleComponent { }
事实是,如果我将触发器复制粘贴animations
到装饰器的属性中,@Component
我的测试就通过了……否则它会失败,因为它似乎找不到动画声明。
有任何想法吗?