Commit 468a7947 authored by Quentin Hamitouche's avatar Quentin Hamitouche

Begin fixing tests

parent 0f5ba749
......@@ -2,6 +2,8 @@
* @type import('hardhat/config').HardhatUserConfig
*/
require("@nomicfoundation/hardhat-ethers");
require("@nomicfoundation/hardhat-chai-matchers");
module.exports = {
solidity: {
......
const { expect } = require("chai");
const { ethers } = require("hardhat");
describe("Contrat Voting", function () {
let voting;
let owner;
......@@ -14,8 +15,7 @@ describe("Contrat Voting", function () {
[owner, voter1, voter2, voter3, nonVoter] = await ethers.getSigners();
const Voting = await ethers.getContractFactory("Voting");
voting = await Voting.deploy();
await voting.deployed();
voting = await Voting.deploy(owner);
});
describe("Enregistrement des électeurs", function () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment