Skip to content

Commit

Permalink
sonarlint issue- make sure to expect something
Browse files Browse the repository at this point in the history
  • Loading branch information
taraepp committed Nov 8, 2024
1 parent d4c9b80 commit 482411f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/common/src/components/projects/projectUtils.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ TEST_PARAMETERS.forEach(

enumValues.forEach((status) => {
it(`Enum value ${status} should be included in testing`, () => {
expect(coreStatuses.includes(status));
expect(msStatuses.includes(status));
expect(coreStatuses.includes(status)).toBe(true);
expect(msStatuses.includes(status)).toBe(true);
});
});

Expand Down

0 comments on commit 482411f

Please sign in to comment.