From 243354d72c1bf314032c6bb996f9b1d47f9d59c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Zi=C3=B3=C5=82kowski?= Date: Tue, 28 May 2024 10:43:51 +0200 Subject: [PATCH] fix linter --- lib/js/components/Cards/Card/Card.spec.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/js/components/Cards/Card/Card.spec.ts b/lib/js/components/Cards/Card/Card.spec.ts index b9d232c48..fc559852c 100644 --- a/lib/js/components/Cards/Card/Card.spec.ts +++ b/lib/js/components/Cards/Card/Card.spec.ts @@ -1,6 +1,8 @@ import { shallowMount } from '@vue/test-utils'; import Card from './Card.vue'; +import { CARD_BORDER_COLORS, CARD_BORDER_POSITIONS, CARD_BORDER_SIZES } from './Card.consts'; +import { LOADING_BAR_COLORS } from '../../LoadingBar'; describe('Card', () => { const createComponent = ({ @@ -14,6 +16,13 @@ describe('Card', () => { props: { headerHasPadding, dividerUnderHeader, + hasBorder: false, + borderSize: CARD_BORDER_SIZES.MEDIUM, + borderColor: CARD_BORDER_COLORS.NEUTRAL_HEAVY, + borderPosition: CARD_BORDER_POSITIONS.TOP, + hasLoadingBar: false, + loadingBarColor: LOADING_BAR_COLORS.NEUTRAL_HEAVY, + loadingBarTime: '0', }, slots: { ...(headerSlot !== '' && { header: headerSlot }),