aave-protocol-v2/test/use-eth-via-weth-gateway.spec.ts
2020-10-28 18:06:24 +01:00

13 lines
331 B
TypeScript

import {expect} from 'chai';
import {makeSuite, TestEnv} from './helpers/make-suite';
makeSuite('Use native ETH at LendingPool via WETHGateway', (testEnv: TestEnv) => {
it('Deposit initial pool liquidity', async () => {});
it('Deposit', async () => {});
it('Withdraw', async () => {});
it('Repay', async () => {});
});