Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CI
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Guillaume DEWISME
CI
Commits
7037e10c
Commit
7037e10c
authored
Mar 23, 2025
by
Quentin Hamitouche
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix broken tests
parent
414ba2aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
Voting.test.js
test/Voting.test.js
+3
-2
No files found.
test/Voting.test.js
View file @
7037e10c
...
@@ -27,7 +27,7 @@ describe("Contrat Voting", function () {
...
@@ -27,7 +27,7 @@ describe("Contrat Voting", function () {
it
(
"ne devrait pas permettre à un non-propriétaire d'enregistrer un électeur"
,
async
function
()
{
it
(
"ne devrait pas permettre à un non-propriétaire d'enregistrer un électeur"
,
async
function
()
{
await
expect
(
voting
.
connect
(
voter1
).
registerVoter
(
voter2
.
address
))
await
expect
(
voting
.
connect
(
voter1
).
registerVoter
(
voter2
.
address
))
.
to
.
be
.
revertedWith
(
"Ownable: caller is not the owner
"
);
.
to
.
be
.
revertedWith
CustomError
(
voting
,
"OwnableUnauthorizedAccount
"
);
});
});
it
(
"ne devrait pas permettre d'enregistrer un électeur déjà enregistré"
,
async
function
()
{
it
(
"ne devrait pas permettre d'enregistrer un électeur déjà enregistré"
,
async
function
()
{
...
@@ -195,7 +195,8 @@ describe("Contrat Voting", function () {
...
@@ -195,7 +195,8 @@ describe("Contrat Voting", function () {
});
});
it
(
"ne devrait pas permettre d'accéder au gagnant avant le comptage"
,
async
function
()
{
it
(
"ne devrait pas permettre d'accéder au gagnant avant le comptage"
,
async
function
()
{
await
voting
.
endVotingSession
();
await
expect
(
voting
.
endVotingSession
())
.
to
.
be
.
revertedWith
(
"Impossible de terminer la session de vote"
);
// Sans appeler tallyVotes()
// Sans appeler tallyVotes()
await
expect
(
voting
.
getWinner
())
await
expect
(
voting
.
getWinner
())
.
to
.
be
.
revertedWith
(
"Les votes n'ont pas encore ete comptabilises"
);
.
to
.
be
.
revertedWith
(
"Les votes n'ont pas encore ete comptabilises"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment