Final Codacy fix and App unit tests pass (not API yet)

This commit is contained in:
Matthew Ross 2020-01-01 17:01:21 -05:00
parent 1da9cb51b2
commit e6233405ff
2 changed files with 1 additions and 2 deletions

View File

@ -206,5 +206,4 @@ TypeScript | 36 | 884 | 181 | 3110
PHP | 11 | 742 | 16 | 2205
*SUM:* | *47* | *1626* | *197* | *5315*
Command: `cloc --exclude-ext=xml test/`

View File

@ -372,7 +372,7 @@ describe('ColumnDisplay', () => {
const today = new Date();
const yesterday = new Date(
today.getFullYear(), today.getMonth(), today.getDay() - 1
today.getFullYear(), today.getMonth(), today.getDay() - 2
);
component.viewModalProps = { due_date: today } as any;