Skip to content

Commit

Permalink
remove ts-ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelolo24 committed Aug 27, 2020
1 parent f75a0f9 commit 26dfa65
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,7 @@ export function emptifyMock<T>(
async entities(...args): Promise<ResolverEntityIndex> {
return dataShouldBeEmpty?.includes('entities')
? Promise.resolve([])
: // @ts-ignore - ignore the argument requirement for dataAccessLayer
dataAccessLayer.entities(...args);
: dataAccessLayer.entities(...args);
},
},
};
Expand Down

0 comments on commit 26dfa65

Please sign in to comment.