liquid-funding/test/helpers/assertFail.js

13 lines
344 B
JavaScript
Raw Normal View History

2017-07-13 17:12:45 +00:00
const chai = require('chai');
const assert = chai.assert;
2017-06-27 11:08:23 +00:00
module.exports = async function(callback) {
let web3_error_thrown = false;
try {
await callback();
} catch (error) {
if (error.message.search("invalid opcode")) web3_error_thrown = true;
}
assert.ok(web3_error_thrown, "Transaction should fail");
};