diff --git a/playwright/playwright/index.tsx b/playwright/playwright/index.tsx index 1cac7e95b..7de998378 100644 --- a/playwright/playwright/index.tsx +++ b/playwright/playwright/index.tsx @@ -1,2 +1,15 @@ -// Import styles, initialize component theme here. +import {MobileProvider, ThemeProvider} from '@gravity-ui/uikit'; +import {beforeMount} from '@playwright/experimental-ct-react/hooks'; +import React from 'react'; + import './index.scss'; + +beforeMount(async ({App}) => { + return ( + + + + + + ); +});