diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-05-22 05:26:25 +0800 |
---|---|---|
committer | Alex Browne <stephenalexbrowne@gmail.com> | 2018-06-07 03:39:42 +0800 |
commit | 72fb8460e90237fb7879fc47e95d84b6aa54911b (patch) | |
tree | abb2c77b0e05cf73738c10766ba59b275183d602 /packages/contracts/src/utils/assertions.ts | |
parent | 577156fe5f63e581b101682d13b7e70e7a9336e5 (diff) | |
download | dexon-sol-tools-72fb8460e90237fb7879fc47e95d84b6aa54911b.tar dexon-sol-tools-72fb8460e90237fb7879fc47e95d84b6aa54911b.tar.gz dexon-sol-tools-72fb8460e90237fb7879fc47e95d84b6aa54911b.tar.bz2 dexon-sol-tools-72fb8460e90237fb7879fc47e95d84b6aa54911b.tar.lz dexon-sol-tools-72fb8460e90237fb7879fc47e95d84b6aa54911b.tar.xz dexon-sol-tools-72fb8460e90237fb7879fc47e95d84b6aa54911b.tar.zst dexon-sol-tools-72fb8460e90237fb7879fc47e95d84b6aa54911b.zip |
Update code after rebase
Diffstat (limited to 'packages/contracts/src/utils/assertions.ts')
-rw-r--r-- | packages/contracts/src/utils/assertions.ts | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/contracts/src/utils/assertions.ts b/packages/contracts/src/utils/assertions.ts new file mode 100644 index 000000000..72c2734d8 --- /dev/null +++ b/packages/contracts/src/utils/assertions.ts @@ -0,0 +1,20 @@ +import * as chai from 'chai'; +import * as _ from 'lodash'; + +import { constants } from './constants'; + +const expect = chai.expect; + +// throws if the given promise does not reject with one of two expected error +// messages. +export const expectRevertOrAlwaysFailingTransaction = <T>(p: Promise<T>) => { + return expect(p) + .to.be.rejected() + .then(e => { + expect(e).to.satisfy( + (err: Error) => + _.includes(err.message, constants.REVERT) || + _.includes(err.message, constants.ALWAYS_FAILING_TRANSACTION), + ); + }); +}; |