Skip to content

Commit c95eaa4

Browse files
committed
fix test dir
1 parent ae125eb commit c95eaa4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+23
-59
lines changed

.gitignore

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ typechain-types
2626
generated-types
2727
artifacts
2828
cache
29-
tests/tests/inputs/*
29+
test/tests/inputs/*
3030
temp_asn1.der
31-
tests/tests/__pycache__
32-
!tests/tests/*.py
33-
!tests/tests/inputs/credValidExceedsPassportInput.json
34-
!tests/tests/inputs/passportExpiredInput.json
35-
!tests/tests/inputs/isNotAdultInput.json
36-
!tests/tests/inputs/validInput.json
31+
test/tests/__pycache__
32+
!test/tests/*.py
33+
!test/tests/inputs/credValidExceedsPassportInput.json
34+
!test/tests/inputs/passportExpiredInput.json
35+
!test/tests/inputs/isNotAdultInput.json
36+
!test/tests/inputs/validInput.json

.mocharc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"require": "hardhat/register",
3-
"timeout": 40000,
3+
"timeout": 100000,
44
"_": ["test/**/*.ts"]
5-
}
5+
}

hardhat.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import "@nomicfoundation/hardhat-toolbox";
33
import "tsconfig-paths/register";
44

55
import "@solarity/hardhat-zkit";
6+
import "@solarity/chai-zkit";
67

78
import { HardhatUserConfig } from "hardhat/config";
89

File renamed without changes.
File renamed without changes.

tests/tests/automatisationTest.js renamed to test/tests/automatisationTest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function generateFilesForAll(filenames, done) {
1616
let pending = filenames.length;
1717
filenames.forEach((filename) => {
1818
console.log("executing for", filename);
19-
exec(`python3 tests/tests/generate_files.py ${filename}`, (error, stdout, stderr) => {
19+
exec(`python3 test/tests/generate_files.py ${filename}`, (error, stdout, stderr) => {
2020
if (error) {
2121
console.error(`Error executing script: ${error.message}`);
2222
return done(error);

0 commit comments

Comments
 (0)