25b67009a6
* feat: add a global zustand store for managing connect dialogs and landing dialog * feat: add tests * fix: remove condition for cypress for auto connecting * chore: fix assertion in tests for vega wallet text * fix: add mock for landing dialog markets query Co-authored-by: madalinaraicu <madalina@vegaprotocol.io>
28 lines
974 B
TypeScript
28 lines
974 B
TypeScript
import { render, screen } from '@testing-library/react';
|
|
import { VegaWalletContainer } from './vega-wallet-container';
|
|
import type { VegaWalletContextShape } from '@vegaprotocol/wallet';
|
|
import { VegaWalletContext } from '@vegaprotocol/wallet';
|
|
import type { PartialDeep } from 'type-fest';
|
|
|
|
const generateJsx = (context: PartialDeep<VegaWalletContextShape>) => {
|
|
return (
|
|
<VegaWalletContext.Provider value={context as VegaWalletContextShape}>
|
|
<VegaWalletContainer>
|
|
<div data-testid="child" />
|
|
</VegaWalletContainer>
|
|
</VegaWalletContext.Provider>
|
|
);
|
|
};
|
|
|
|
describe('VegaWalletContainer', () => {
|
|
it('doesnt render children if not connected', () => {
|
|
render(generateJsx({ keypair: null }));
|
|
expect(screen.queryByTestId('child')).not.toBeInTheDocument();
|
|
});
|
|
|
|
it('renders children if connected', () => {
|
|
render(generateJsx({ keypair: { pub: '0x123' } }));
|
|
expect(screen.getByTestId('child')).toBeInTheDocument();
|
|
});
|
|
});
|