diff options
author | Kevin Silva <kevin.silva@sonarsource.com> | 2023-12-01 12:56:34 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-12-01 20:02:43 +0000 |
commit | 83325c00407343f092221844675490669840401e (patch) | |
tree | 4b3f78c7cf6834ee774cdd53bba0f0e731028cd9 /server/sonar-web/design-system/src/components/__tests__/HotspotRating-test.tsx | |
parent | c6e87529c6fbae1e5a4965e6f85d8858c789a4f2 (diff) | |
download | sonarqube-83325c00407343f092221844675490669840401e.tar.gz sonarqube-83325c00407343f092221844675490669840401e.zip |
SONAR-21164 - Add prettier into design system build
Diffstat (limited to 'server/sonar-web/design-system/src/components/__tests__/HotspotRating-test.tsx')
-rw-r--r-- | server/sonar-web/design-system/src/components/__tests__/HotspotRating-test.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/design-system/src/components/__tests__/HotspotRating-test.tsx b/server/sonar-web/design-system/src/components/__tests__/HotspotRating-test.tsx index e3cd43931b5..42ff311c0b8 100644 --- a/server/sonar-web/design-system/src/components/__tests__/HotspotRating-test.tsx +++ b/server/sonar-web/design-system/src/components/__tests__/HotspotRating-test.tsx @@ -32,7 +32,7 @@ it.each(Object.values(HotspotRatingEnum))( (rating) => { renderHotspotRating(rating, 'label'); expect(screen.getByLabelText('label')).toMatchSnapshot(); - } + }, ); function renderHotspotRating(rating?: HotspotRatingEnum, label?: string) { |