mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
13 lines
331 B
TypeScript
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 () => {});
|
|
});
|