0
I am trying to use this plugin to my app: https://github.com/MurhafSousli/ngx-progressbar#user-content-automagic-loading-bar不能綁定到「厚」,因爲它不是「NG-進步」已知屬性
其工作正常,但是當我在其上運行測試時,出現錯誤:
燦因爲它不是'ng-progress'的已知屬性,所以不會綁定到'thick'。
app.module.ts
import { NgProgressCustomBrowserXhr, NgProgressModule } from 'ngx-progressbar';
@NgModule({
declarations: [
AppComponent
],
imports: [
NgProgressModule
],
providers: [
{ provide: BrowserXhr, useClass: NgProgressCustomBrowserXhr },
],
bootstrap: [AppComponent]
})
export class AppModule {
}
我app.component.html
<ng-progress [thick]="'true'" [showSpinner]="'false'"></ng-progress>
當我運行 NPM運行測試
失敗,出現錯誤:
Error: Template parse errors: 1. If 'ng-progress' is an Angular component, then verify that it is part of this module.
我是完全不知道爲什麼測試只是失敗。
請通過添加您的測試配置編輯您的問題 –
你能提供你的規格文件嗎?似乎你忘了在你的測試中提供你的組件。 – runit
我的不好..這是當你匆忙時會發生什麼..謝謝@runit。你指出了正確的。如果您可以添加此評論作爲答案,我可以接受並可以幫助像我這樣的用戶。 – undefined