chore: add jest ignore comment for zk-protocol file

This commit is contained in:
cedoor
2022-02-09 19:58:22 +01:00
parent 01348d3483
commit 40539f0168
2 changed files with 2 additions and 6 deletions

View File

@@ -15,12 +15,7 @@ const projects: any = fs
export default async (): Promise<Config.InitialOptions> => ({
projects,
verbose: true,
collectCoverageFrom: [
"<rootDir>/src/**/*.ts",
"!<rootDir>/src/**/index.ts",
"!<rootDir>/src/**/*.d.ts",
"!<rootDir>/src/zk-protocol.ts"
],
collectCoverageFrom: ["<rootDir>/src/**/*.ts", "!<rootDir>/src/**/index.ts", "!<rootDir>/src/**/*.d.ts"],
coverageThreshold: {
global: {
branches: 90,

View File

@@ -1,3 +1,4 @@
/* istanbul ignore file */
import { groth16 } from "snarkjs"
import { FullProof, SolidityProof } from "./types"