Skip to content

Commit

Permalink
Update mock rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustavo Silva committed Aug 7, 2018
1 parent 41bbbd5 commit 316cf01
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/__mocks__/rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,23 @@ export default {
label: 'firstName',
required: true,
},
{
name: 'gender',
label: 'gender',
maxLength: 30,
},
{
name: 'lastName',
maxLength: 100,
label: 'lastName',
required: true,
},
],
businessFields: [],
businessFields: [
{
name: 'tradeName',
label: 'tradeName',
maxLength: 100,
},
],
}

0 comments on commit 316cf01

Please sign in to comment.