fix jest setup for react helpers
This commit is contained in:
parent
fdc5e68158
commit
74ac60fbfa
@ -6,4 +6,5 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
|
||||||
coverageDirectory: '../../coverage/libs/react-helpers',
|
coverageDirectory: '../../coverage/libs/react-helpers',
|
||||||
|
setupFilesAfterEnv: ['./jest.setup.js'],
|
||||||
};
|
};
|
||||||
|
5
libs/react-helpers/jest.setup.js
Normal file
5
libs/react-helpers/jest.setup.js
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
// jest-dom adds custom jest matchers for asserting on DOM nodes.
|
||||||
|
// allows you to do things like:
|
||||||
|
// expect(element).toHaveTextContent(/react/i)
|
||||||
|
// learn more: https://github.com/testing-library/jest-dom
|
||||||
|
import '@testing-library/jest-dom';
|
@ -5,7 +5,7 @@ import { RestConnectorForm } from './rest-connector-form';
|
|||||||
import { useEffect } from 'react';
|
import { useEffect } from 'react';
|
||||||
import { RestConnector, useVegaWallet } from '.';
|
import { RestConnector, useVegaWallet } from '.';
|
||||||
|
|
||||||
interface VegaConnectDialogProps {
|
export interface VegaConnectDialogProps {
|
||||||
connectors: { [name: string]: VegaConnector };
|
connectors: { [name: string]: VegaConnector };
|
||||||
dialogOpen: boolean;
|
dialogOpen: boolean;
|
||||||
setDialogOpen: (isOpen: boolean) => void;
|
setDialogOpen: (isOpen: boolean) => void;
|
||||||
|
@ -32,7 +32,7 @@ export class RestConnector implements VegaConnector {
|
|||||||
configKey = WALLET_CONFIG;
|
configKey = WALLET_CONFIG;
|
||||||
apiConfig: Configuration;
|
apiConfig: Configuration;
|
||||||
service: DefaultApi;
|
service: DefaultApi;
|
||||||
description = 'Connects using REST to the Vega wallet desktop app';
|
description = 'Connects using REST to a running Vega wallet service';
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
const cfg = this.getConfig();
|
const cfg = this.getConfig();
|
||||||
|
Loading…
Reference in New Issue
Block a user