@maci-protocol/testing 0.0.0-ci.044d30d → 0.0.0-ci.063ef62
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/LICENSE +1 -2
- package/build/ts/__tests__/e2e.full.test.d.ts +2 -0
- package/build/ts/__tests__/e2e.full.test.d.ts.map +1 -0
- package/build/ts/__tests__/e2e.full.test.js +851 -0
- package/build/ts/__tests__/e2e.full.test.js.map +1 -0
- package/build/ts/__tests__/e2e.nonQv.test.js +418 -28
- package/build/ts/__tests__/e2e.nonQv.test.js.map +1 -1
- package/build/ts/__tests__/e2e.test.js +231 -231
- package/build/ts/__tests__/e2e.test.js.map +1 -1
- package/build/ts/__tests__/integration.test.js +39 -39
- package/build/ts/__tests__/integration.test.js.map +1 -1
- package/build/ts/__tests__/keyChange.test.js +60 -60
- package/build/ts/__tests__/keyChange.test.js.map +1 -1
- package/build/ts/__tests__/maciKeys.test.js +41 -41
- package/build/ts/__tests__/maciKeys.test.js.map +1 -1
- package/build/ts/__tests__/unit/joinPoll.test.js +93 -18
- package/build/ts/__tests__/unit/joinPoll.test.js.map +1 -1
- package/build/ts/__tests__/unit/poll.test.js +5 -5
- package/build/ts/__tests__/unit/poll.test.js.map +1 -1
- package/build/ts/__tests__/unit/publish.test.js +8 -8
- package/build/ts/__tests__/unit/publish.test.js.map +1 -1
- package/build/ts/__tests__/unit/signup.test.js +8 -8
- package/build/ts/__tests__/unit/signup.test.js.map +1 -1
- package/build/ts/__tests__/unit/utils.test.js +12 -12
- package/build/ts/__tests__/unit/utils.test.js.map +1 -1
- package/build/ts/constants.d.ts +39 -41
- package/build/ts/constants.d.ts.map +1 -1
- package/build/ts/constants.js +83 -62
- package/build/ts/constants.js.map +1 -1
- package/build/ts/testingClass.d.ts.map +1 -1
- package/build/ts/testingClass.js +14 -14
- package/build/ts/testingClass.js.map +1 -1
- package/build/ts/types.d.ts +4 -4
- package/build/ts/types.d.ts.map +1 -1
- package/build/ts/user.d.ts +2 -2
- package/build/ts/user.d.ts.map +1 -1
- package/build/ts/user.js +1 -1
- package/build/ts/user.js.map +1 -1
- package/build/ts/utils.d.ts +3 -3
- package/build/ts/utils.d.ts.map +1 -1
- package/build/ts/utils.js +12 -12
- package/build/ts/utils.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +12 -12
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.063ef62",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A package with testing utilities for MACI",
|
|
6
6
|
"main": "build/ts/index.js",
|
|
@@ -28,26 +28,26 @@
|
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/chai-as-promised": "^7.1.8",
|
|
30
30
|
"@types/mocha": "^10.0.10",
|
|
31
|
-
"@types/node": "^22.
|
|
31
|
+
"@types/node": "^22.15.17",
|
|
32
32
|
"chai": "^4.3.10",
|
|
33
33
|
"chai-as-promised": "^7.1.2",
|
|
34
34
|
"hardhat-artifactor": "^0.2.0",
|
|
35
35
|
"hardhat-contract-sizer": "^2.0.3",
|
|
36
|
-
"mocha": "^11.
|
|
36
|
+
"mocha": "^11.2.2",
|
|
37
37
|
"ts-mocha": "^11.1.0",
|
|
38
38
|
"typescript": "^5.8.3"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@maci-protocol/circuits": "0.0.0-ci.
|
|
42
|
-
"@maci-protocol/cli": "0.0.0-ci.
|
|
43
|
-
"@maci-protocol/core": "0.0.0-ci.
|
|
44
|
-
"@maci-protocol/crypto": "0.0.0-ci.
|
|
45
|
-
"@maci-protocol/domainobjs": "0.0.0-ci.
|
|
46
|
-
"@maci-protocol/sdk": "0.0.0-ci.
|
|
41
|
+
"@maci-protocol/circuits": "0.0.0-ci.063ef62",
|
|
42
|
+
"@maci-protocol/cli": "0.0.0-ci.063ef62",
|
|
43
|
+
"@maci-protocol/core": "0.0.0-ci.063ef62",
|
|
44
|
+
"@maci-protocol/crypto": "0.0.0-ci.063ef62",
|
|
45
|
+
"@maci-protocol/domainobjs": "0.0.0-ci.063ef62",
|
|
46
|
+
"@maci-protocol/sdk": "0.0.0-ci.063ef62",
|
|
47
47
|
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
|
|
48
48
|
"@types/chai": "^4.3.11",
|
|
49
|
-
"ethers": "^6.13.
|
|
50
|
-
"hardhat": "^2.
|
|
49
|
+
"ethers": "^6.13.7",
|
|
50
|
+
"hardhat": "^2.24.0"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "e9fa44f16d003d1612032499510b3ad372d63901"
|
|
53
53
|
}
|