mirror of
https://github.com/zkemail/zk-email-verify.git
synced 2026-01-08 21:18:09 -05:00
circuit: rename compiled-test-circuits
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -77,7 +77,7 @@ generate_input_log.txt
|
||||
*.env
|
||||
.vscode
|
||||
|
||||
packages/circuits/tests/compiled-test-circuit/*
|
||||
packages/circuits/tests/compiled-test-circuits/*
|
||||
|
||||
|
||||
.vite
|
||||
|
||||
@@ -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"),
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
@@ -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"),
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
@@ -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"),
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
@@ -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"));
|
||||
|
||||
@@ -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"),
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user