aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/design-system/src/components/__tests__/Card-test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/design-system/src/components/__tests__/Card-test.tsx')
-rw-r--r--server/sonar-web/design-system/src/components/__tests__/Card-test.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/design-system/src/components/__tests__/Card-test.tsx b/server/sonar-web/design-system/src/components/__tests__/Card-test.tsx
index c71f6e9a833..eb2c4c216ee 100644
--- a/server/sonar-web/design-system/src/components/__tests__/Card-test.tsx
+++ b/server/sonar-web/design-system/src/components/__tests__/Card-test.tsx
@@ -35,7 +35,7 @@ it('renders card correctly with classNames', () => {
render(
<Card className="sw-bg-black sw-border-8" role="tabpanel">
Hello
- </Card>
+ </Card>,
);
const cardContent = screen.getByText('Hello');
expect(cardContent).toHaveClass('sw-bg-black sw-border-8');
@@ -46,7 +46,7 @@ it('renders grey card correctly with classNames', () => {
render(
<GreyCard className="sw-bg-black sw-border-8" role="tabpanel">
Hello
- </GreyCard>
+ </GreyCard>,
);
const cardContent = screen.getByText('Hello');
expect(cardContent).toHaveClass('sw-bg-black sw-border-8');