took a while to confirm this one
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
e2481366a2
commit
85b3b52e39
|
@ -25,7 +25,7 @@
|
|||
</form>
|
||||
<vn-confirm
|
||||
vn-id="confirmation"
|
||||
on-response="$ctrl.returnDialog($response)"
|
||||
on-accept="$ctrl.returnDialog()"
|
||||
question="Esta modificación retrasará el plazo del próximo recobro"
|
||||
message="¿Desea continuar?">
|
||||
</vn-confirm>
|
||||
|
|
|
@ -16,9 +16,8 @@ class Controller extends Section {
|
|||
this.goToIndex();
|
||||
}
|
||||
|
||||
returnDialog(response) {
|
||||
if (response === 'accept')
|
||||
this.addCredit();
|
||||
returnDialog() {
|
||||
this.addCredit();
|
||||
}
|
||||
|
||||
goToIndex() {
|
||||
|
|
|
@ -75,7 +75,7 @@ describe('Client', () => {
|
|||
describe('returnDialog()', () => {
|
||||
it('should call addCredit() when is called with accept', () => {
|
||||
jest.spyOn(controller, 'addCredit');
|
||||
controller.returnDialog('accept');
|
||||
controller.returnDialog();
|
||||
|
||||
expect(controller.addCredit).toHaveBeenCalledWith();
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue