tornado-trees/test/proposal.test.js

16 lines
357 B
JavaScript

/* global ethers */
const { expect } = require('chai')
describe('Proposal', () => {
beforeEach(async function () {
const Proposal = await ethers.getContractFactory('Proposal')
const proposal = await Proposal.deploy()
console.log('proposal', proposal)
})
it('should work for even array', () => {
expect(2 + 2).to.be.equal(4)
})
})