Create test for VisitsHighlightCard

This commit is contained in:
Alejandro Celaya
2023-03-18 11:10:03 +01:00
parent 934bf495a0
commit 8e9e2c5b61
2 changed files with 61 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ import type { PartialVisitsSummary } from '../../visits/reducers/visitsOverview'
import type { HighlightCardProps } from './HighlightCard';
import { HighlightCard } from './HighlightCard';
type VisitsHighlightCardProps = Omit<HighlightCardProps, 'tooltip'> & {
export type VisitsHighlightCardProps = Omit<HighlightCardProps, 'tooltip' | 'children'> & {
loading: boolean;
excludeBots: boolean;
visitsSummary: PartialVisitsSummary;