diff --git a/playwright/playwright/index.tsx b/playwright/playwright/index.tsx index 67aac616fc..2cee79a79e 100644 --- a/playwright/playwright/index.tsx +++ b/playwright/playwright/index.tsx @@ -1 +1,18 @@ +import React from 'react'; + +import {beforeMount} from '@playwright/experimental-ct-react/hooks'; + +import {MobileProvider} from '../../src/components/mobile/MobileProvider'; +import {ThemeProvider} from '../../src/components/theme/ThemeProvider'; + import './index.scss'; + +beforeMount(async ({App}) => { + return ( + + + + + + ); +});