diff options
author | Amir Bandeali <abandeali1@gmail.com> | 2018-08-30 06:57:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-30 06:57:53 +0800 |
commit | eb4517d7379128b18c830b704742154c8b2f3c8d (patch) | |
tree | b35903f1951a683ee50db1908dcc1fc46b81c165 /packages/contracts/test/utils | |
parent | f87420a7768cb6342ad53f0d05734466e039f231 (diff) | |
parent | d80701c2779512324c7a9bef2a87b6f63239d281 (diff) | |
download | dexon-sol-tools-eb4517d7379128b18c830b704742154c8b2f3c8d.tar dexon-sol-tools-eb4517d7379128b18c830b704742154c8b2f3c8d.tar.gz dexon-sol-tools-eb4517d7379128b18c830b704742154c8b2f3c8d.tar.bz2 dexon-sol-tools-eb4517d7379128b18c830b704742154c8b2f3c8d.tar.lz dexon-sol-tools-eb4517d7379128b18c830b704742154c8b2f3c8d.tar.xz dexon-sol-tools-eb4517d7379128b18c830b704742154c8b2f3c8d.tar.zst dexon-sol-tools-eb4517d7379128b18c830b704742154c8b2f3c8d.zip |
Merge pull request #1041 from 0xProject/refactor/contracts/assetProxyOwnerVersion
Update AssetProxyOwner to 0.4.24, remove redundant code
Diffstat (limited to 'packages/contracts/test/utils')
-rw-r--r-- | packages/contracts/test/utils/assertions.ts | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/packages/contracts/test/utils/assertions.ts b/packages/contracts/test/utils/assertions.ts index 61df800c8..3361a751a 100644 --- a/packages/contracts/test/utils/assertions.ts +++ b/packages/contracts/test/utils/assertions.ts @@ -159,7 +159,7 @@ export async function expectTransactionFailedWithoutReasonAsync(p: sendTransacti * @returns a new Promise which will reject if the conditions are not met and * otherwise resolve with no value. */ -export async function expectContractCallFailed<T>(p: Promise<T>, reason: RevertReason): Promise<void> { +export async function expectContractCallFailedAsync<T>(p: Promise<T>, reason: RevertReason): Promise<void> { return expect(p).to.be.rejectedWith(reason); } @@ -180,7 +180,20 @@ export async function expectContractCallFailedWithoutReasonAsync<T>(p: Promise<T * @returns a new Promise which will reject if the conditions are not met and * otherwise resolve with no value. */ -export async function expectContractCreationFailedWithoutReason<T>(p: Promise<T>): Promise<void> { +export async function expectContractCreationFailedAsync<T>( + p: sendTransactionResult, + reason: RevertReason, +): Promise<void> { + return expectTransactionFailedAsync(p, reason); +} + +/** + * Resolves if the contract creation/deployment fails without a revert reason. + * @param p a Promise resulting from a contract creation/deployment + * @returns a new Promise which will reject if the conditions are not met and + * otherwise resolve with no value. + */ +export async function expectContractCreationFailedWithoutReasonAsync<T>(p: Promise<T>): Promise<void> { const errMessage = await _getTransactionFailedErrorMessageAsync(); return expect(p).to.be.rejectedWith(errMessage); } |