fix: refs #8581 update date format in checkDate command to MM/DD/YYYY for consistency
This commit is contained in:
parent
bb2676952c
commit
8a6cd267f9
|
@ -480,8 +480,9 @@ Cypress.Commands.add('checkNumber', (text, expectedVal, operation) => {
|
||||||
});
|
});
|
||||||
|
|
||||||
Cypress.Commands.add('checkDate', (rawDate, expectedVal, operation) => {
|
Cypress.Commands.add('checkDate', (rawDate, expectedVal, operation) => {
|
||||||
const date = moment(rawDate.trim(), 'DD/MM/YYYY');
|
const date = moment(rawDate.trim(), 'MM/DD/YYYY');
|
||||||
const compareDate = moment(expectedVal, 'DD/MM/YYYY');
|
const compareDate = moment(expectedVal, 'DD/MM/YYYY');
|
||||||
|
|
||||||
switch (operation) {
|
switch (operation) {
|
||||||
case 'equal':
|
case 'equal':
|
||||||
expect(text.trim()).to.equal(compareDate);
|
expect(text.trim()).to.equal(compareDate);
|
||||||
|
|
Loading…
Reference in New Issue