@maci-protocol/testing 0.0.0-ci.a73cfa9 → 0.0.0-ci.a874953
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/hardhat.config.js +1 -1
- package/build/hardhat.config.js.map +1 -1
- package/build/ts/__tests__/e2e.full.test.js +23 -26
- package/build/ts/__tests__/e2e.full.test.js.map +1 -1
- package/build/ts/__tests__/e2e.nonQv.test.js +42 -29
- package/build/ts/__tests__/e2e.nonQv.test.js.map +1 -1
- package/build/ts/__tests__/e2e.test.js +88 -67
- package/build/ts/__tests__/e2e.test.js.map +1 -1
- package/build/ts/__tests__/integration.test.js +28 -31
- package/build/ts/__tests__/integration.test.js.map +1 -1
- package/build/ts/__tests__/keyChange.test.js +21 -17
- package/build/ts/__tests__/keyChange.test.js.map +1 -1
- package/build/ts/__tests__/maciKeys.test.js +1 -1
- package/build/ts/__tests__/maciKeys.test.js.map +1 -1
- package/build/ts/__tests__/stress/stress.full.test.js +13 -19
- package/build/ts/__tests__/stress/stress.full.test.js.map +1 -1
- package/build/ts/__tests__/unit/joinPoll.test.js +20 -20
- package/build/ts/__tests__/unit/joinPoll.test.js.map +1 -1
- package/build/ts/__tests__/unit/poll.test.js +6 -9
- package/build/ts/__tests__/unit/poll.test.js.map +1 -1
- package/build/ts/__tests__/unit/publish.test.js +6 -9
- package/build/ts/__tests__/unit/publish.test.js.map +1 -1
- package/build/ts/__tests__/unit/setVerifyingKeys.test.js +2 -2
- package/build/ts/__tests__/unit/setVerifyingKeys.test.js.map +1 -1
- package/build/ts/__tests__/unit/signup.test.js +6 -4
- package/build/ts/__tests__/unit/signup.test.js.map +1 -1
- package/build/ts/testingClass.d.ts +3 -3
- package/build/ts/testingClass.d.ts.map +1 -1
- package/build/ts/testingClass.js +18 -21
- package/build/ts/testingClass.js.map +1 -1
- package/build/ts/types.d.ts +2 -2
- package/build/ts/types.d.ts.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +10 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maci-protocol/testing",
|
|
3
|
-
"version": "0.0.0-ci.
|
|
3
|
+
"version": "0.0.0-ci.a874953",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A package with testing utilities for MACI",
|
|
6
6
|
"main": "build/ts/index.js",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/chai-as-promised": "^8.0.2",
|
|
31
31
|
"@types/mocha": "^10.0.10",
|
|
32
|
-
"@types/node": "^24.
|
|
32
|
+
"@types/node": "^24.11.0",
|
|
33
33
|
"chai": "^4.3.10",
|
|
34
34
|
"chai-as-promised": "^8.0.1",
|
|
35
35
|
"hardhat-artifactor": "^0.2.0",
|
|
@@ -39,16 +39,17 @@
|
|
|
39
39
|
"typescript": "^5.9.2"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@maci-protocol/circuits": "0.0.0-ci.
|
|
43
|
-
"@maci-protocol/cli": "0.0.0-ci.
|
|
44
|
-
"@maci-protocol/
|
|
45
|
-
"@maci-protocol/
|
|
46
|
-
"@maci-protocol/
|
|
47
|
-
"@maci-protocol/
|
|
42
|
+
"@maci-protocol/circuits": "0.0.0-ci.a874953",
|
|
43
|
+
"@maci-protocol/cli": "0.0.0-ci.a874953",
|
|
44
|
+
"@maci-protocol/contracts": "0.0.0-ci.a874953",
|
|
45
|
+
"@maci-protocol/core": "0.0.0-ci.a874953",
|
|
46
|
+
"@maci-protocol/crypto": "0.0.0-ci.a874953",
|
|
47
|
+
"@maci-protocol/domainobjs": "0.0.0-ci.a874953",
|
|
48
|
+
"@maci-protocol/sdk": "0.0.0-ci.a874953",
|
|
48
49
|
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
|
|
49
50
|
"@types/chai": "^4.3.11",
|
|
50
51
|
"ethers": "^6.15.0",
|
|
51
52
|
"hardhat": "^2.25.0"
|
|
52
53
|
},
|
|
53
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "92dc3ede8a33c55e5e6c76599397f1cada5d2098"
|
|
54
55
|
}
|