@maci-protocol/testing 0.0.0-ci.a577366 → 0.0.0-ci.a73cfa9
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 +845 -0
- package/build/ts/__tests__/e2e.full.test.js.map +1 -0
- package/build/ts/__tests__/e2e.nonQv.test.js +422 -35
- package/build/ts/__tests__/e2e.nonQv.test.js.map +1 -1
- package/build/ts/__tests__/e2e.test.js +264 -274
- package/build/ts/__tests__/e2e.test.js.map +1 -1
- package/build/ts/__tests__/integration.test.js +60 -59
- package/build/ts/__tests__/integration.test.js.map +1 -1
- package/build/ts/__tests__/keyChange.test.js +74 -76
- 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__/stress/stress.full.test.d.ts +2 -0
- package/build/ts/__tests__/stress/stress.full.test.d.ts.map +1 -0
- package/build/ts/__tests__/stress/stress.full.test.js +195 -0
- package/build/ts/__tests__/stress/stress.full.test.js.map +1 -0
- package/build/ts/__tests__/unit/joinPoll.test.js +65 -27
- package/build/ts/__tests__/unit/joinPoll.test.js.map +1 -1
- package/build/ts/__tests__/unit/poll.test.js +7 -6
- package/build/ts/__tests__/unit/poll.test.js.map +1 -1
- package/build/ts/__tests__/unit/publish.test.js +10 -9
- package/build/ts/__tests__/unit/publish.test.js.map +1 -1
- package/build/ts/__tests__/unit/setVerifyingKeys.test.d.ts +2 -0
- package/build/ts/__tests__/unit/setVerifyingKeys.test.d.ts.map +1 -0
- package/build/ts/__tests__/unit/setVerifyingKeys.test.js +52 -0
- package/build/ts/__tests__/unit/setVerifyingKeys.test.js.map +1 -0
- 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 +53 -55
- package/build/ts/constants.d.ts.map +1 -1
- package/build/ts/constants.js +113 -74
- package/build/ts/constants.js.map +1 -1
- package/build/ts/testingClass.d.ts +7 -7
- package/build/ts/testingClass.d.ts.map +1 -1
- package/build/ts/testingClass.js +30 -26
- package/build/ts/testingClass.js.map +1 -1
- package/build/ts/types.d.ts +10 -11
- 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 +19 -18
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.a73cfa9",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A package with testing utilities for MACI",
|
|
6
6
|
"main": "build/ts/index.js",
|
|
@@ -18,36 +18,37 @@
|
|
|
18
18
|
"types": "tsc -p tsconfig.json --noEmit",
|
|
19
19
|
"test": "ts-mocha --exit ./ts/__tests__/**/*.test.ts",
|
|
20
20
|
"test:integration": "NODE_OPTIONS=--max-old-space-size=4096 ts-mocha --exit ./ts/__tests__/integration.test.ts",
|
|
21
|
-
"test:ceremony": "NODE_ENV=test ts-mocha --exit ./ts/__tests__/ceremonyParams.test.ts",
|
|
22
21
|
"test:e2e": "NODE_ENV=test ts-mocha --exit ./ts/__tests__/e2e*.test.ts",
|
|
23
22
|
"test:e2e-qv": "NODE_ENV=test ts-mocha --exit ./ts/__tests__/e2e.test.ts",
|
|
24
23
|
"test:e2e-non-qv": "NODE_ENV=test ts-mocha --exit ./ts/__tests__/e2e.nonQv.test.ts",
|
|
24
|
+
"test:e2e-full": "NODE_ENV=test ts-mocha --exit ./ts/__tests__/e2e.full.test.ts",
|
|
25
25
|
"test:keyChange": "NODE_ENV=test ts-mocha --exit ./ts/__tests__/keyChange.test.ts",
|
|
26
|
-
"test:unit": "NODE_ENV=test ts-mocha --exit ./ts/__tests__/unit/*.test.ts"
|
|
26
|
+
"test:unit": "NODE_ENV=test ts-mocha --exit ./ts/__tests__/unit/*.test.ts",
|
|
27
|
+
"test:stress": "NODE_OPTIONS=--max-old-space-size=4096 NODE_ENV=test ts-mocha --exit ./ts/__tests__/stress/*.test.ts"
|
|
27
28
|
},
|
|
28
29
|
"devDependencies": {
|
|
29
|
-
"@types/chai-as-promised": "^
|
|
30
|
+
"@types/chai-as-promised": "^8.0.2",
|
|
30
31
|
"@types/mocha": "^10.0.10",
|
|
31
|
-
"@types/node": "^
|
|
32
|
+
"@types/node": "^24.2.0",
|
|
32
33
|
"chai": "^4.3.10",
|
|
33
|
-
"chai-as-promised": "^
|
|
34
|
+
"chai-as-promised": "^8.0.1",
|
|
34
35
|
"hardhat-artifactor": "^0.2.0",
|
|
35
36
|
"hardhat-contract-sizer": "^2.0.3",
|
|
36
|
-
"mocha": "^11.
|
|
37
|
+
"mocha": "^11.7.2",
|
|
37
38
|
"ts-mocha": "^11.1.0",
|
|
38
|
-
"typescript": "^5.
|
|
39
|
+
"typescript": "^5.9.2"
|
|
39
40
|
},
|
|
40
41
|
"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.
|
|
47
|
-
"@nomicfoundation/hardhat-toolbox": "^
|
|
42
|
+
"@maci-protocol/circuits": "0.0.0-ci.a73cfa9",
|
|
43
|
+
"@maci-protocol/cli": "0.0.0-ci.a73cfa9",
|
|
44
|
+
"@maci-protocol/core": "0.0.0-ci.a73cfa9",
|
|
45
|
+
"@maci-protocol/crypto": "0.0.0-ci.a73cfa9",
|
|
46
|
+
"@maci-protocol/domainobjs": "0.0.0-ci.a73cfa9",
|
|
47
|
+
"@maci-protocol/sdk": "0.0.0-ci.a73cfa9",
|
|
48
|
+
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
|
|
48
49
|
"@types/chai": "^4.3.11",
|
|
49
|
-
"ethers": "^6.
|
|
50
|
-
"hardhat": "^2.
|
|
50
|
+
"ethers": "^6.15.0",
|
|
51
|
+
"hardhat": "^2.25.0"
|
|
51
52
|
},
|
|
52
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "4ca4276356b3c29355acbc7062c063afa990de61"
|
|
53
54
|
}
|