Skip to content

Commit

Permalink
Update build.
Browse files Browse the repository at this point in the history
  • Loading branch information
travist committed Nov 19, 2024
1 parent 3106b9d commit e38e07a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ describe('validateRequiredDay', function () {
fields: {
year: { required: true },
month: { required: true },
day: { hide: true }
day: { hide: true },
},
};
const data = { component: '07/2024' };
Expand All @@ -74,7 +74,7 @@ describe('validateRequiredDay', function () {
fields: {
year: { required: true },
day: { required: true },
month: { hide: true }
month: { hide: true },
},
};
const data = { component: '24/2024' };
Expand All @@ -89,7 +89,7 @@ describe('validateRequiredDay', function () {
fields: {
month: { required: true },
day: { required: true },
year: { hide: true }
year: { hide: true },
},
};
const data = { component: '07/24' };
Expand Down

0 comments on commit e38e07a

Please sign in to comment.