1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Remove console.log of expected action from actions test (#18130)

This commit is contained in:
Thomas Huang 2023-03-14 04:09:16 -07:00 committed by GitHub
parent c022d2eb9a
commit eafffb1af5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2110,7 +2110,7 @@ describe('Actions', () => {
await store.dispatch(actions.cancelMsgs(msgsList));
const resultantActions = store.getActions();
console.log(resultantActions);
const expectedActions = resultantActions.filter(
(action) => action.type === 'COMPLETED_TX',
);