Angular 2 Testing PrimeNG ConfirmationDialog

1.6k Views Asked by At

I'm writing jasmine unit test for following code:

this.confirmationService.confirm({
  message: 'Are you sure that you want to delete?',
  accept: () => {
   //some code to test
  }
});

How I can fake clicking of Yes in the dialog, to test code inside accept() function?

2

There are 2 best solutions below

0
On

You can create spy like this:

spyOn(confirmationService, 'confirm').and.callFake((params: Confirmation) => {
    params.accept();
});
1
On

In your template:

<p-confirmDialog #confirmDialog header="Confirmation" icon="fa fa-question-circle" width="425"></p-confirmDialog>

In your component:

@ViewChild('confirmDialog') confirmDialog: ConfirmDialog;

then you're able to invoke confirmDialog.accept().