test added

This commit is contained in:
alrubio
2021-10-06 12:49:54 +02:00
parent 4896fc0663
commit 3942e16d84
4 changed files with 37 additions and 3 deletions

View File

@@ -51,7 +51,6 @@ async function compile (fileName, options) {
if (options.r1cs) flags += "--r1cs ";
if (options.json) flags += "--json ";
if (options.output) flags += "--output " + options.output + " ";
console.log(circom + flags + fileName);
await exec("circom " + flags + fileName);
}