re add tsconfigs for storage package
This commit is contained in:
parent
69924aa0b3
commit
1f1ce70a67
104
libs/react-helpers/src/lib/vega-wallet/provider.test.tsx
Normal file
104
libs/react-helpers/src/lib/vega-wallet/provider.test.tsx
Normal file
@ -0,0 +1,104 @@
|
||||
import '@testing-library/jest-dom';
|
||||
import {
|
||||
act,
|
||||
fireEvent,
|
||||
render,
|
||||
screen,
|
||||
waitFor,
|
||||
} from '@testing-library/react';
|
||||
import { RestConnector } from './connectors';
|
||||
import { useVegaWallet } from './hooks';
|
||||
import { VegaWalletProvider } from './provider';
|
||||
import { WALLET_KEY } from './storage-keys';
|
||||
|
||||
const restConnector = new RestConnector();
|
||||
|
||||
afterAll(() => {
|
||||
localStorage.clear();
|
||||
});
|
||||
|
||||
const TestComponent = () => {
|
||||
const { connect, disconnect, keypairs, keypair, selectPublicKey } =
|
||||
useVegaWallet();
|
||||
return (
|
||||
<div data-testid="children">
|
||||
<button
|
||||
onClick={() => {
|
||||
connect(restConnector);
|
||||
}}
|
||||
>
|
||||
Connect
|
||||
</button>
|
||||
<button
|
||||
onClick={() => {
|
||||
disconnect();
|
||||
}}
|
||||
>
|
||||
Disconnect
|
||||
</button>
|
||||
<p data-testid="current-keypair">{keypair?.pub}</p>
|
||||
{keypairs?.length ? (
|
||||
<ul data-testid="keypair-list">
|
||||
{keypairs.map((kp) => (
|
||||
<li key={kp.pub} onClick={() => selectPublicKey(kp.pub)}>
|
||||
{kp.pub}
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
) : null}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
const generateJSX = () => (
|
||||
<VegaWalletProvider>
|
||||
<TestComponent />
|
||||
</VegaWalletProvider>
|
||||
);
|
||||
|
||||
test('Renders children', async () => {
|
||||
const mockKeypairs = [{ pub: 'public key 1' }, { pub: 'public key 2' }];
|
||||
localStorage.setItem(WALLET_KEY, mockKeypairs[0].pub);
|
||||
jest
|
||||
.spyOn(restConnector, 'connect')
|
||||
// @ts-ignore just using pub to assert state logic
|
||||
.mockImplementation(() => Promise.resolve(mockKeypairs));
|
||||
|
||||
jest
|
||||
.spyOn(restConnector, 'disconnect')
|
||||
.mockImplementation(() => Promise.resolve());
|
||||
|
||||
const { unmount } = render(generateJSX());
|
||||
expect(screen.getByTestId('children')).toBeInTheDocument();
|
||||
await act(async () => {
|
||||
fireEvent.click(screen.getByText('Connect'));
|
||||
});
|
||||
expect(screen.getByTestId('keypair-list').children).toHaveLength(
|
||||
mockKeypairs.length
|
||||
);
|
||||
expect(screen.getByTestId('current-keypair')).toHaveTextContent(
|
||||
mockKeypairs[0].pub
|
||||
);
|
||||
|
||||
// Change current keypair
|
||||
fireEvent.click(screen.getByTestId('keypair-list').children[1]);
|
||||
expect(screen.getByTestId('current-keypair')).toHaveTextContent(
|
||||
mockKeypairs[1].pub
|
||||
);
|
||||
|
||||
// Current keypair should persist
|
||||
unmount();
|
||||
render(generateJSX());
|
||||
await act(async () => {
|
||||
fireEvent.click(screen.getByText('Connect'));
|
||||
});
|
||||
expect(screen.getByTestId('current-keypair')).toHaveTextContent(
|
||||
mockKeypairs[1].pub
|
||||
);
|
||||
|
||||
await act(async () => {
|
||||
fireEvent.click(screen.getByText('Disconnect'));
|
||||
});
|
||||
expect(screen.getByTestId('current-keypair')).toBeEmptyDOMElement();
|
||||
expect(screen.queryByTestId('keypairs-list')).not.toBeInTheDocument();
|
||||
});
|
@ -9,6 +9,7 @@
|
||||
"outputs": ["{options.outputPath}"],
|
||||
"options": {
|
||||
"outputPath": "dist/libs/storage",
|
||||
"tsConfig": "libs/storage/tsconfig.lib.json",
|
||||
"project": "libs/storage/package.json",
|
||||
"entryFile": "libs/storage/src/index.js",
|
||||
"rollupConfig": "@nrwl/react/plugins/bundle-rollup",
|
||||
|
25
libs/storage/tsconfig.json
Normal file
25
libs/storage/tsconfig.json
Normal file
@ -0,0 +1,25 @@
|
||||
{
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"jsx": "react-jsx",
|
||||
"allowJs": true,
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"strict": true,
|
||||
"noImplicitOverride": true,
|
||||
"noPropertyAccessFromIndexSignature": true,
|
||||
"noImplicitReturns": true,
|
||||
"noFallthroughCasesInSwitch": true
|
||||
},
|
||||
"files": [],
|
||||
"include": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.lib.json"
|
||||
},
|
||||
{
|
||||
"path": "./tsconfig.spec.json"
|
||||
}
|
||||
]
|
||||
}
|
26
libs/storage/tsconfig.lib.json
Normal file
26
libs/storage/tsconfig.lib.json
Normal file
@ -0,0 +1,26 @@
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../../dist/out-tsc",
|
||||
"types": ["node"]
|
||||
},
|
||||
"files": [
|
||||
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts",
|
||||
"../../node_modules/@nrwl/react/typings/image.d.ts"
|
||||
],
|
||||
"exclude": [
|
||||
"**/*.spec.ts",
|
||||
"**/*.test.ts",
|
||||
"**/*.spec.tsx",
|
||||
"**/*.test.tsx",
|
||||
"**/*.spec.js",
|
||||
"**/*.test.js",
|
||||
"**/*.spec.jsx",
|
||||
"**/*.test.jsx",
|
||||
"**/*.stories.ts",
|
||||
"**/*.stories.js",
|
||||
"**/*.stories.jsx",
|
||||
"**/*.stories.tsx"
|
||||
],
|
||||
"include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"]
|
||||
}
|
19
libs/storage/tsconfig.spec.json
Normal file
19
libs/storage/tsconfig.spec.json
Normal file
@ -0,0 +1,19 @@
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../../dist/out-tsc",
|
||||
"module": "commonjs",
|
||||
"types": ["jest", "node"]
|
||||
},
|
||||
"include": [
|
||||
"**/*.test.ts",
|
||||
"**/*.spec.ts",
|
||||
"**/*.test.tsx",
|
||||
"**/*.spec.tsx",
|
||||
"**/*.test.js",
|
||||
"**/*.spec.js",
|
||||
"**/*.test.jsx",
|
||||
"**/*.spec.jsx",
|
||||
"**/*.d.ts"
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user