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/test | |
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/test')
-rw-r--r-- | packages/contracts/test/utils/assertions.ts | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/packages/contracts/test/utils/assertions.ts b/packages/contracts/test/utils/assertions.ts deleted file mode 100644 index 538a6e4fc..000000000 --- a/packages/contracts/test/utils/assertions.ts +++ /dev/null @@ -1,20 +0,0 @@ -import * as chai from 'chai'; -import * as _ from 'lodash'; - -import { constants } from '../../util/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), - ); - }); -}; |