yarn format

This commit is contained in:
turnoffthiscomputer
2024-12-16 16:55:15 +01:00
parent 79d99a68f3
commit f7be5e9b2f
5 changed files with 6 additions and 15 deletions

View File

@@ -1 +1 @@
nodeLinker: node-modules nodeLinker: node-modules

View File

@@ -88,7 +88,6 @@ describe('OFAC - Passport number match', function () {
const ofacCheckResult = (await circuit.getOutput(w, ['ofacCheckResult'])).ofacCheckResult; const ofacCheckResult = (await circuit.getOutput(w, ['ofacCheckResult'])).ofacCheckResult;
expect(ofacCheckResult).to.equal('0'); expect(ofacCheckResult).to.equal('0');
}); });
}); });
// Level 2: NameDob match in OfacList // Level 2: NameDob match in OfacList

View File

@@ -70,7 +70,7 @@ sigAlgs.forEach(({ sigAlg, hashFunction, domainParameter, keyLength }) => {
path.join( path.join(
__dirname, __dirname,
`../circuits/prove/instances/${getCircuitName('prove', sigAlg, hashFunction, domainParameter, keyLength)}.circom` `../circuits/prove/instances/${getCircuitName('prove', sigAlg, hashFunction, domainParameter, keyLength)}.circom`
), )
); );
}); });

View File

@@ -27,10 +27,7 @@ describe('VerifyRsaPkcs1v1_5 Circuit Test', function () {
const circuit = await wasmTester( const circuit = await wasmTester(
path.join(__dirname, `../../circuits/tests/utils/rsa/test_${algorithm}.circom`), path.join(__dirname, `../../circuits/tests/utils/rsa/test_${algorithm}.circom`),
{ {
include: [ include: ['node_modules', './node_modules/@zk-kit/binary-merkle-root.circom/src'],
'node_modules',
'./node_modules/@zk-kit/binary-merkle-root.circom/src',
],
} }
); );

View File

@@ -9,11 +9,6 @@
"checkJs": false, "checkJs": false,
"outDir": "./dist" "outDir": "./dist"
}, },
"include": [ "include": ["tests/**/*", "src/**/*"],
"tests/**/*", "exclude": ["node_modules"]
"src/**/*" }
],
"exclude": [
"node_modules"
]
}