typescript NGX-易于测试zippy.component.ts

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript NGX-易于测试zippy.component.ts相关的知识,希望对你有一定的参考价值。

@Component({
  selector: 'zippy',
  template: `
    <div class="zippy">
      <div (click)="toggle()" class="zippy__title">
        <span class="arrow">{{ visible ? 'Close' : 'Open' }}</span> {{title}}
      </div>
      <div *ngIf="visible" class="zippy__content">
        <ng-content></ng-content>
      </div>
    </div>
  `
})
export class ZippyComponent {

  @Input() title;
  visible = false;

  toggle() {
    this.visible = !this.visible;
  }
}

以上是关于typescript NGX-易于测试zippy.component.ts的主要内容,如果未能解决你的问题,请参考以下文章

typescript NGX-易于测试button.component.ts

typescript NGX-易于测试button.component.spec.ts

typescript zippy.component.spec.ts

Typescript 代码在调试单元测试时启用了覆盖率

无法使用 ngx translate/core - angular 2 typescript 获得文本的动态翻译

BUU-MISC-[BSidesSF2019]zippy