Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
449
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <!--some other component html--!>
  2. <div class="mx-auto" style="width: max-content">
  3. <ngb-pagination [collectionSize]="currentView.totalTaskCount" [(page)]="currentView.currentPage" [maxSize]="10"
  4. [pageSize]="currentView.pageSize" [rotate]="true" [boundaryLinks]="true"
  5. (pageChange)="currentView.setCurrentPageSlice($event)">
  6.  
  7. </ngb-pagination>
  8. </div>
  9.  
  10. 'ngb-pagination' is not a known element:
  11. 1. If 'ngb-pagination' is an Angular component, then verify that it is part of this module.
  12. 2. If 'ngb-pagination' is a Web Component then add "CUSTOM_ELEMENTS_SCHEMA" to the '@NgModule.schemas' of this component to suppress this message.
  13.  
  14. //imports..
  15.  
  16. describe('App: WorkFlowDisplay Component', () => {
  17.  
  18. beforeEach(async(() => {
  19. params = new Subject<Params>();
  20. TestBed.configureTestingModule({
  21. imports: [RouterTestingModule],
  22. declarations: [WorkflowDisplayComponent,
  23. TaskComponent, DatePipe,ModalService,UserList,<<?ngBootstrapComponent???>
  24. ],
  25. //some more code
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement