diff --git a/.gitignore b/.gitignore index 9555e2a..b0a7116 100644 --- a/.gitignore +++ b/.gitignore @@ -77,7 +77,7 @@ generate_input_log.txt *.env .vscode -packages/circuits/tests/compiled-test-circuit/* +packages/circuits/tests/compiled-test-circuits/* .vite diff --git a/packages/circuits/tests/base64.test.ts b/packages/circuits/tests/base64.test.ts index 6d601fb..c3e7c67 100644 --- a/packages/circuits/tests/base64.test.ts +++ b/packages/circuits/tests/base64.test.ts @@ -22,7 +22,7 @@ describe("Base64 Lookup", () => { { recompile: true, include: path.join(__dirname, "../../../node_modules"), - output: path.join(__dirname, "./compiled-test-circuit"), + output: path.join(__dirname, "./compiled-test-circuits"), } ); }); diff --git a/packages/circuits/tests/compiled-test-circuit/.gitkeep b/packages/circuits/tests/compiled-test-circuit/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/packages/circuits/tests/email-verifier.test.ts b/packages/circuits/tests/email-verifier.test.ts index 77d708f..dec0f82 100644 --- a/packages/circuits/tests/email-verifier.test.ts +++ b/packages/circuits/tests/email-verifier.test.ts @@ -27,10 +27,10 @@ describe("EmailVerifier", () => { { // @dev During development recompile can be set to false if you are only making changes in the tests. // This will save time by not recompiling the circuit every time. - // Compile: circom "./tests/email-verifier-test.circom" --r1cs --wasm --sym --c --wat --output "./tests/compiled-test-circuit" + // Compile: circom "./tests/email-verifier-test.circom" --r1cs --wasm --sym --c --wat --output "./tests/compiled-test-circuits" recompile: true, include: path.join(__dirname, "../../../node_modules"), - output: path.join(__dirname, "./compiled-test-circuit"), + output: path.join(__dirname, "./compiled-test-circuits"), } ); }); diff --git a/packages/circuits/tests/no-body-hash.test.ts b/packages/circuits/tests/no-body-hash.test.ts index 6b1befa..4df5f34 100644 --- a/packages/circuits/tests/no-body-hash.test.ts +++ b/packages/circuits/tests/no-body-hash.test.ts @@ -30,7 +30,7 @@ describe("EmailVerifier : Without body check", () => { { recompile: true, include: path.join(__dirname, "../../../node_modules"), - output: path.join(__dirname, "./compiled-test-circuit"), + output: path.join(__dirname, "./compiled-test-circuits"), } ); }); diff --git a/packages/circuits/tests/rsa.test.ts b/packages/circuits/tests/rsa.test.ts index b74776d..bbb8f8f 100644 --- a/packages/circuits/tests/rsa.test.ts +++ b/packages/circuits/tests/rsa.test.ts @@ -24,7 +24,7 @@ describe("RSA", () => { { recompile: true, include: path.join(__dirname, "../../../node_modules"), - // output: path.join(__dirname, "./compiled-test-circuit"), + // output: path.join(__dirname, "./compiled-test-circuits"), } ); const rawEmail = fs.readFileSync(path.join(__dirname, "./test.eml")); diff --git a/packages/circuits/tests/sha256.test.ts b/packages/circuits/tests/sha256.test.ts index 4dbb5bf..f29c4ce 100644 --- a/packages/circuits/tests/sha256.test.ts +++ b/packages/circuits/tests/sha256.test.ts @@ -19,7 +19,7 @@ describe("SHA256 for email header", () => { { recompile: true, include: path.join(__dirname, "../../../node_modules"), - // output: path.join(__dirname, "./compiled-test-circuit"), + // output: path.join(__dirname, "./compiled-test-circuits"), } ); });