Codestyle fixes
This commit is contained in:
parent
7804c09162
commit
2004d38893
|
@ -37,7 +37,6 @@ const OwnerForm = ({
|
||||||
onSubmit,
|
onSubmit,
|
||||||
}: Props) => {
|
}: Props) => {
|
||||||
const handleSubmit = (values) => {
|
const handleSubmit = (values) => {
|
||||||
console.log(values)
|
|
||||||
onSubmit(values)
|
onSubmit(values)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,15 +3,9 @@
|
||||||
// TBD
|
// TBD
|
||||||
|
|
||||||
describe('DOM > Feature > SAFE MULTISIG Transactions', () => {
|
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
|
// @flow
|
||||||
import { fireEvent } from '@testing-library/react'
|
import { fireEvent } from '@testing-library/react'
|
||||||
import { MANAGE_TOKENS_BUTTON_TEST_ID } from '~/routes/safe/components/Balances'
|
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'
|
import { MANAGE_TOKENS_MODAL_CLOSE_BUTTON_TEST_ID } from '~/routes/safe/components/Balances/Tokens'
|
||||||
|
|
||||||
export const clickOnManageTokens = (dom: any): void => {
|
export const clickOnManageTokens = (dom: any): void => {
|
||||||
|
|
Loading…
Reference in New Issue