82 lines
1.4 KiB
Bash
82 lines
1.4 KiB
Bash
#!/bin/bash
|
|
# truffle compile --all
|
|
|
|
if [ "$1"x = "proxy-dpp"x ]
|
|
then
|
|
truffle test ./test/V2Proxy/proxy.dpp.test.ts
|
|
fi
|
|
|
|
if [ "$1"x = "proxy-dvm"x ]
|
|
then
|
|
truffle test ./test/V2Proxy/proxy.dvm.test.ts
|
|
fi
|
|
|
|
if [ "$1"x = "proxy-mix"x ]
|
|
then
|
|
truffle test ./test/V2Proxy/proxy.mix.test.ts
|
|
fi
|
|
|
|
if [ "$1"x = "proxy-classical"x ]
|
|
then
|
|
truffle test ./test/V2Proxy/proxy.classical.test.ts
|
|
fi
|
|
|
|
if [ "$1"x = "proxy-cp"x ]
|
|
then
|
|
truffle test ./test/V2Proxy/proxy.cp.test.ts
|
|
fi
|
|
|
|
if [ "$1"x = "proxy-incentive"x ]
|
|
then
|
|
truffle test ./test/V2Proxy/proxy.incentive.test.ts
|
|
fi
|
|
|
|
if [ "$1"x = "proxy-incentive-bsc"x ]
|
|
then
|
|
truffle test ./test/V2Proxy/proxy.incentive.bsc.test.ts
|
|
fi
|
|
|
|
if [ "$1"x = "proxy-twap"x ]
|
|
then
|
|
truffle test ./test/V2Proxy/proxy.twap.test.ts
|
|
fi
|
|
|
|
if [ "$1"x = "vdodo-mintRedeem"x ]
|
|
then
|
|
truffle test ./test/vDODO/mintRedeem.test.ts
|
|
fi
|
|
|
|
if [ "$1"x = "erc20-mine"x ]
|
|
then
|
|
truffle test ./test/DODOMineV2/erc20Mine.test.ts
|
|
fi
|
|
|
|
if [ "$1"x = "vdodo-mine"x ]
|
|
then
|
|
truffle test ./test/DODOMineV2/vDODOMine.test.ts
|
|
fi
|
|
|
|
if [ "$1"x = "nft"x ]
|
|
then
|
|
truffle test ./test/DODONFT/nftMainFlow.test.ts
|
|
fi
|
|
|
|
if [ "$1"x = "boxV1"x ]
|
|
then
|
|
truffle test ./test/DODONFT/mysteryBoxV1.test.ts
|
|
fi
|
|
|
|
if [ "$1"x = "boxV2"x ]
|
|
then
|
|
truffle test ./test/DODODrops/dropsV2.test.ts
|
|
fi
|
|
|
|
if [ "$1"x = "erc721NFTPool"x ]
|
|
then
|
|
truffle test ./test/NFTPool/erc721NftPool.test.ts
|
|
fi
|
|
|
|
if [ "$1"x = "erc1155NFTPool"x ]
|
|
then
|
|
truffle test ./test/NFTPool/erc1155NftPool.test.ts
|
|
fi |