Skip to content

Commit

Permalink
patch(vest): Remove unneeded empty check in hasRemainigTests
Browse files Browse the repository at this point in the history
  • Loading branch information
ealush committed Jul 7, 2022
1 parent e7db774 commit d4d4cb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vest/src/core/suite/hasRemainingTests.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { isEmpty, isNotEmpty } from 'isEmpty';
import { isEmpty } from 'isEmpty';

import matchingFieldName from 'matchingFieldName';
import { useAllIncomplete } from 'stateHooks';
Expand All @@ -17,7 +17,7 @@ function hasRemainingTests(fieldName?: string): boolean {
);
}

return isNotEmpty(allIncomplete);
return true;
}

export default hasRemainingTests;

1 comment on commit d4d4cb1

@vercel
Copy link

@vercel vercel bot commented on d4d4cb1 Jul 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

vest-next – ./website

vest-next.vercel.app
vest-website.vercel.app
vest-next-git-latest-ealush.vercel.app
vest-next-ealush.vercel.app

Please sign in to comment.