mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-10 02:55:41 +00:00
01fc5f1a89
* Start splitting networks into their own reducers * Split out nodes and networks into their own reducers * Cleanup file structure * Make selectors for new state * Change custom network typing * re-type repo * Fix up components to use selectors, work on fixing sagas * Provide consistency in naming, fix more sagas * Get non web3 node switching working * Split config rehydration off into a different file for store * Inline auth for custom nodes * Include typing for app state * moar selectors * Get web3 working + cleanup sagas * Cleanup tsc errors * Use forof loop instead of foreach for clearing pruning custom networks * Add reducer tests for new redux state * Export needed variables * Add console error * Remove old comment * Work on saga tests * Get passing existing saga tests * Fix more tests * Remove irrlevant tests * add console error * Get rest of tests passing * Fix merge errors * Remove random text * Fix store saving * Fix selector lib only grabbing from static nodes * Fix custom node removal crashing app * Infer selected network via node * Prune custom networks properly on node removal * Infer network name from chainid from selecting state * Cleanup tsc errors * Remove MEW nodes for main and testnet
30 lines
882 B
TypeScript
30 lines
882 B
TypeScript
import { customTokens } from 'reducers/customTokens';
|
|
import * as customTokensActions from 'actions/customTokens';
|
|
import { Token } from 'types/network';
|
|
|
|
describe('customTokens reducer', () => {
|
|
const token1: Token = {
|
|
address: 'address',
|
|
symbol: 'OMG',
|
|
decimal: 16
|
|
};
|
|
const token2: Token = {
|
|
address: 'address',
|
|
symbol: 'ANT',
|
|
decimal: 16
|
|
};
|
|
|
|
it('should handle CUSTOM_TOKEN_ADD', () => {
|
|
expect(customTokens(undefined, customTokensActions.addCustomToken(token1))).toEqual([token1]);
|
|
});
|
|
|
|
it('should handle CUSTOM_TOKEN_REMOVE', () => {
|
|
const state1 = customTokens(undefined, customTokensActions.addCustomToken(token1));
|
|
const state2 = customTokens(state1, customTokensActions.addCustomToken(token2));
|
|
|
|
expect(customTokens(state2, customTokensActions.removeCustomToken(token2.symbol))).toEqual([
|
|
token1
|
|
]);
|
|
});
|
|
});
|