Skip to content

Commit

Permalink
fix merge conflict goof
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanbond committed Oct 16, 2024
1 parent 8183e37 commit 027563e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions .eslintcache

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/process/validation/__tests__/Validator.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ describe('Validator', function () {
email: 'brendanb',
url: 'htpigoogle',
inputMask: 'hello, world',
time: ['12:00:00', '11:00'], // one of the values is provided in incorrect format (format instead dataFormat)
submit: false,
};
for (const component of simpleForm.components) {
Expand Down
9 changes: 9 additions & 0 deletions src/process/validation/__tests__/fixtures/forms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2286,6 +2286,15 @@ export const simpleForm = {
id: 'e8vls3a',
keyModified: true,
},
{
label: 'Time',
type: 'time',
key: 'time',
input: true,
dataFormat: 'HH:mm:ss',
format: 'HH:mm',
multiple: true,
},
{
type: 'button',
label: 'Submit',
Expand Down

0 comments on commit 027563e

Please sign in to comment.