12 lines
317 B
JavaScript
12 lines
317 B
JavaScript
const { shouldBehaveLikeEscrow } = require('./Escrow.behavior');
|
|
|
|
const Escrow = artifacts.require('Escrow');
|
|
|
|
contract('Escrow', function ([_, owner, ...otherAccounts]) {
|
|
beforeEach(async function () {
|
|
this.escrow = await Escrow.new({ from: owner });
|
|
});
|
|
|
|
shouldBehaveLikeEscrow(owner, otherAccounts);
|
|
});
|