12345678910111213141516 |
- const { accounts, contract } = require('@openzeppelin/test-environment');
- require('@openzeppelin/test-helpers');
- const { shouldBehaveLikeEscrow } = require('./Escrow.behavior');
- const Escrow = contract.fromArtifact('Escrow');
- describe('Escrow', function () {
- const [ primary, ...otherAccounts ] = accounts;
- beforeEach(async function () {
- this.escrow = await Escrow.new({ from: primary });
- });
- shouldBehaveLikeEscrow(primary, otherAccounts);
- });
|