@aztec/foundation 0.68.2 → 0.69.0

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.
@@ -11,8 +11,8 @@ export declare function writeTestData(targetFileFromRepoRoot: string, contents:
11
11
  export declare function updateInlineTestData(targetFileFromRepoRoot: string, itemName: string, value: string): void;
12
12
  /**
13
13
  * Updates the sample Prover.toml files in noir-projects/noir-protocol-circuits/crates/.
14
- * @remarks Requires AZTEC_GENERATE_TEST_DATA=1 & generateProtocolCircuitTestData=true to be set
15
- * To re-gen, run 'AZTEC_GENERATE_TEST_DATA=1 FAKE_PROOFS=1 yarn workspace @aztec/end-to-end test full.test'
14
+ * @remarks Requires AZTEC_GENERATE_TEST_DATA=1 to be set
15
+ * To re-gen, run 'AZTEC_GENERATE_TEST_DATA=1 FAKE_PROOFS=1 yarn test:e2e-no-docker full.test '
16
16
  */
17
17
  export declare function updateProtocolCircuitSampleInputs(circuitName: string, value: string): void;
18
18
  //# sourceMappingURL=index.d.ts.map
@@ -37,8 +37,8 @@ export function updateInlineTestData(targetFileFromRepoRoot, itemName, value) {
37
37
  }
38
38
  /**
39
39
  * Updates the sample Prover.toml files in noir-projects/noir-protocol-circuits/crates/.
40
- * @remarks Requires AZTEC_GENERATE_TEST_DATA=1 & generateProtocolCircuitTestData=true to be set
41
- * To re-gen, run 'AZTEC_GENERATE_TEST_DATA=1 FAKE_PROOFS=1 yarn workspace @aztec/end-to-end test full.test'
40
+ * @remarks Requires AZTEC_GENERATE_TEST_DATA=1 to be set
41
+ * To re-gen, run 'AZTEC_GENERATE_TEST_DATA=1 FAKE_PROOFS=1 yarn test:e2e-no-docker full.test '
42
42
  */
43
43
  export function updateProtocolCircuitSampleInputs(circuitName, value) {
44
44
  const logger = createConsoleLogger('aztec:testing:test_data');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/foundation",
3
- "version": "0.68.2",
3
+ "version": "0.69.0",
4
4
  "type": "module",
5
5
  "main": "./dest/index.js",
6
6
  "types": "./dest/index.d.ts",
@@ -91,12 +91,7 @@
91
91
  ".ts"
92
92
  ],
93
93
  "reporters": [
94
- [
95
- "jest-silent-reporter",
96
- {
97
- "useDots": true
98
- }
99
- ]
94
+ "default"
100
95
  ],
101
96
  "testTimeout": 30000,
102
97
  "setupFilesAfterEnv": [
@@ -107,7 +102,7 @@
107
102
  ]
108
103
  },
109
104
  "dependencies": {
110
- "@aztec/bb.js": "0.68.2",
105
+ "@aztec/bb.js": "0.69.0",
111
106
  "@koa/cors": "^5.0.0",
112
107
  "@noble/curves": "^1.2.0",
113
108
  "bn.js": "^5.2.1",
@@ -42,8 +42,8 @@ export function updateInlineTestData(targetFileFromRepoRoot: string, itemName: s
42
42
 
43
43
  /**
44
44
  * Updates the sample Prover.toml files in noir-projects/noir-protocol-circuits/crates/.
45
- * @remarks Requires AZTEC_GENERATE_TEST_DATA=1 & generateProtocolCircuitTestData=true to be set
46
- * To re-gen, run 'AZTEC_GENERATE_TEST_DATA=1 FAKE_PROOFS=1 yarn workspace @aztec/end-to-end test full.test'
45
+ * @remarks Requires AZTEC_GENERATE_TEST_DATA=1 to be set
46
+ * To re-gen, run 'AZTEC_GENERATE_TEST_DATA=1 FAKE_PROOFS=1 yarn test:e2e-no-docker full.test '
47
47
  */
48
48
  export function updateProtocolCircuitSampleInputs(circuitName: string, value: string) {
49
49
  const logger = createConsoleLogger('aztec:testing:test_data');