Skip to content
Snippets Groups Projects
Commit 70b99c45 authored by Arthur E. Jones's avatar Arthur E. Jones Committed by James Long
Browse files

test: add invalid length date test cases

parent e32a916b
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,10 @@ describe('Import transactions', function() {
{ str: '04 31 2020', order: 'mm dd yyyy' },
{ str: '06 31 2020', order: 'mm dd yyyy' },
{ str: '09 31 2020', order: 'mm dd yyyy' },
{ str: '11 31 2020', order: 'mm dd yyyy' }
{ str: '11 31 2020', order: 'mm dd yyyy' },
{ str: '2046 31 2020', order: 'mm dd yyyy' },
{ str: '2011 31 2020', order: 'mm dd yy' },
{ str: '2020', order: 'mm dd yy' }
];
for (const { str, order } of invalidInputs) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment