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

Begin fixing tests

parent 0f5ba749
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
* @type import('hardhat/config').HardhatUserConfig * @type import('hardhat/config').HardhatUserConfig
*/ */
require("@nomicfoundation/hardhat-ethers"); require("@nomicfoundation/hardhat-ethers");
require("@nomicfoundation/hardhat-chai-matchers");
module.exports = { module.exports = {
solidity: { solidity: {
......
const { expect } = require("chai"); const { expect } = require("chai");
const { ethers } = require("hardhat"); const { ethers } = require("hardhat");
describe("Contrat Voting", function () { describe("Contrat Voting", function () {
let voting; let voting;
let owner; let owner;
...@@ -14,8 +15,7 @@ describe("Contrat Voting", function () { ...@@ -14,8 +15,7 @@ describe("Contrat Voting", function () {
[owner, voter1, voter2, voter3, nonVoter] = await ethers.getSigners(); [owner, voter1, voter2, voter3, nonVoter] = await ethers.getSigners();
const Voting = await ethers.getContractFactory("Voting"); const Voting = await ethers.getContractFactory("Voting");
voting = await Voting.deploy(); voting = await Voting.deploy(owner);
await voting.deployed();
}); });
describe("Enregistrement des électeurs", function () { 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