Codestyle fixes
This commit is contained in:
parent
7804c09162
commit
2004d38893
|
@ -37,7 +37,6 @@ const OwnerForm = ({
|
|||
onSubmit,
|
||||
}: Props) => {
|
||||
const handleSubmit = (values) => {
|
||||
console.log(values)
|
||||
onSubmit(values)
|
||||
}
|
||||
|
||||
|
|
|
@ -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('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('approves and executes pending transactions', async () => {})
|
||||
})
|
||||
|
|
|
@ -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 => {
|
||||
|
|
Loading…
Reference in New Issue