17 lines
332 B
JavaScript
17 lines
332 B
JavaScript
const assert = require('chai').assert;
|
|
|
|
const inLogs = async (logs, eventName) => {
|
|
const event = logs.find(e => e.event === eventName);
|
|
assert.exists(event);
|
|
};
|
|
|
|
const inTransaction = async (tx, eventName) => {
|
|
const { logs } = await tx;
|
|
return inLogs(logs, eventName);
|
|
};
|
|
|
|
module.exports = {
|
|
inLogs,
|
|
inTransaction,
|
|
};
|