From 3466a9d5b93c6f57d7a506e34e4bbfba920f2027 Mon Sep 17 00:00:00 2001 From: Graeme Houston Date: Sun, 26 Jan 2025 12:59:40 +0000 Subject: [PATCH] fix: (TestUtils) use correct import --- lib/components/__test__/test-utils.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/components/__test__/test-utils.tsx b/lib/components/__test__/test-utils.tsx index a83f1bd..9c6fa69 100644 --- a/lib/components/__test__/test-utils.tsx +++ b/lib/components/__test__/test-utils.tsx @@ -1,14 +1,13 @@ import { render } from '@testing-library/react'; import React from 'react'; import { WllSdkProvider } from '../../context/WllSdkContext'; +import { defaultTheme } from '../../utils/styling'; const defaultConfig = { apiKey: 'test-api-key', userToken: 'test-user-token', }; -const defaultTheme = {}; - const AllTheProviders = ({ children }: { children: React.ReactNode }) => { return (