Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
434 views
in Technique[技术] by (71.8m points)

enum not recognised - cypress angular unit test

I have been trying to implement cypress-angular-unit-test into my existing Angular 9 app.

I have been getting this issue which I'm not sure how to fix. I keep getting this issue in a file that is totally unrelated to my test case.

It seems to think that the Enum is undefined, however we can clearly see that it is not. Also during testing of the app in that area, everything works as expected

also my component and cy-spec.ts files are very simple

any idea why I keep getting this error?I have spent a long time trying to find an answer...

// cy-spec.ts
describe('KitLabelComponent', () => {
  beforeEach(() => {
    initEnv(KitLabelComponent, {
      declarations: [HelptipComponent],
    });
  });
  it('shows label with tooltip', () => {
    mount(KitLabelComponent, {
      label: 'test label',
      tooltipText: 'test tooltip',
    });
    cy.contains('test label');
  });
});

/// component.ts
import { Component, Input } from '@angular/core';
@Component({
  selector: 'kit-label',
  template: `
    <label>
      <div>
        <span
          >{{ label }}
          <app-helptip *ngIf="tooltipText" [titleText]="label" [contentText]="tooltipText"></app-helptip>
        </span>
      </div>
      <ng-content></ng-content>
    </label>
  `,
  styleUrls: ['./kit-label.component.less'],
})
export class KitLabelComponent {
  @Input() label: string;
  @Input() tooltipText: string;
}

enter image description here enter image description here

question from:https://stackoverflow.com/questions/65661551/enum-not-recognised-cypress-angular-unit-test

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...