Search code examples
angularjasminekarma-jasmineangular-test

jasmine thorw ERROR: 'NG0303: Can't bind to 'options' since it isn't a known property of 'div'.'


This is my html code.

<div class="container" echarts [options]="Option"></div>

When i run the testcase,throwing following error. enter image description here

Solution1

enter image description here

Above solution not recommencement.

Do we have any other solution?

Thanks in advance.


Solution

  • You have to import used modules:

    TestBed.configureTestingModule({
      imports: [NgxEchartsModule],
    });