13 lines
362 B
JavaScript
13 lines
362 B
JavaScript
require('@openzeppelin/test-helpers');
|
|
const { shouldBehaveLikeEscrow } = require('./Escrow.behavior');
|
|
|
|
const Escrow = artifacts.require('Escrow');
|
|
|
|
contract('Escrow', function ([_, primary, ...otherAccounts]) {
|
|
beforeEach(async function () {
|
|
this.escrow = await Escrow.new({ from: primary });
|
|
});
|
|
|
|
shouldBehaveLikeEscrow(primary, otherAccounts);
|
|
});
|