circuit: rename compiled-test-circuits

This commit is contained in:
Saleel
2024-03-28 13:09:01 +05:30
parent 0e46fe1f5e
commit 82ef70d287
7 changed files with 7 additions and 7 deletions

2
.gitignore vendored
View File

@@ -77,7 +77,7 @@ generate_input_log.txt
*.env
.vscode
packages/circuits/tests/compiled-test-circuit/*
packages/circuits/tests/compiled-test-circuits/*
.vite

View File

@@ -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"),
}
);
});

View File

@@ -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"),
}
);
});

View File

@@ -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"),
}
);
});

View File

@@ -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"));

View File

@@ -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"),
}
);
});