UNPKG

polar-bear-stash-contracts

Version:

Smart contracts for the PolarBearStash (COLD) ERC20 token on the Berachain (test)chain.

15 lines (10 loc) 385 B
require('@openzeppelin/test-helpers'); const { shouldBehaveLikeEscrow } = require('./Escrow.behavior'); const Escrow = artifacts.require('Escrow'); contract('Escrow', function (accounts) { const [ owner, ...otherAccounts ] = accounts; beforeEach(async function () { this.escrow = await Escrow.new({ from: owner }); }); shouldBehaveLikeEscrow(owner, otherAccounts); });