import React from 'react'; import { render } from '@testing-library/react'; import Index from '../pages/index.page'; import { VegaWalletContext } from '@vegaprotocol/react-helpers'; describe('Index', () => { it('should render successfully', () => { const { baseElement } = render( ); expect(baseElement).toBeTruthy(); }); });