mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Unit test fixes
This commit is contained in:
parent
f7b83553e5
commit
84b85dc77d
10 changed files with 889 additions and 1399 deletions
|
@ -50,14 +50,8 @@ describe('ConfirmDialog', () => {
|
|||
message: 'Are you sure you want to proceed?',
|
||||
header: 'Confirmation',
|
||||
icon: 'pi pi-exclamation-triangle',
|
||||
accept: () => {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log('accept');
|
||||
},
|
||||
reject: () => {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log('reject');
|
||||
}
|
||||
accept: () => {},
|
||||
reject: () => {}
|
||||
},
|
||||
visible: true
|
||||
};
|
||||
|
@ -89,14 +83,8 @@ describe('ConfirmDialog', () => {
|
|||
message: 'Are you sure you want to proceed?',
|
||||
header: 'Confirmation',
|
||||
icon: 'pi pi-exclamation-triangle',
|
||||
accept: () => {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log('accept');
|
||||
},
|
||||
reject: () => {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log('reject');
|
||||
}
|
||||
accept: () => {},
|
||||
reject: () => {}
|
||||
},
|
||||
visible: true
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue