Codestyle fixes

This commit is contained in:
Germán Martínez 2019-05-24 12:00:27 +02:00
parent 7804c09162
commit 2004d38893
3 changed files with 7 additions and 11 deletions

View File

@ -37,7 +37,6 @@ const OwnerForm = ({
onSubmit,
}: Props) => {
const handleSubmit = (values) => {
console.log(values)
onSubmit(values)
}

View File

@ -3,15 +3,9 @@
// TBD
describe('DOM > Feature > SAFE MULTISIG Transactions', () => {
it.only('mines correctly all multisig txs in a 1 owner & 1 threshold safe', async () => {
it.only('mines correctly all multisig txs in a 1 owner & 1 threshold safe', async () => {})
})
it.only('mines withdraw process correctly all multisig txs in a 2 owner & 2 threshold safe', async () => {
})
it.only('approves and executes pending transactions', async () => {
})
it.only('mines withdraw process correctly all multisig txs in a 2 owner & 2 threshold safe', async () => {})
it.only('approves and executes pending transactions', async () => {})
})

View File

@ -1,7 +1,10 @@
// @flow
import { fireEvent } from '@testing-library/react'
import { MANAGE_TOKENS_BUTTON_TEST_ID } from '~/routes/safe/components/Balances'
import { ADD_CUSTOM_TOKEN_BUTTON_TEST_ID, TOGGLE_TOKEN_TEST_ID } from '~/routes/safe/components/Balances/Tokens/screens/TokenList'
import {
ADD_CUSTOM_TOKEN_BUTTON_TEST_ID,
TOGGLE_TOKEN_TEST_ID,
} from '~/routes/safe/components/Balances/Tokens/screens/TokenList'
import { MANAGE_TOKENS_MODAL_CLOSE_BUTTON_TEST_ID } from '~/routes/safe/components/Balances/Tokens'
export const clickOnManageTokens = (dom: any): void => {