Some checks failed
CI / Frontend Lint (push) Failing after 6s
CI / Frontend Type Check (push) Failing after 6s
CI / Frontend Build (push) Failing after 6s
CI / Frontend E2E Tests (push) Failing after 8s
CI / Contracts Compile (push) Has been cancelled
CI / Contracts Test (push) Has been cancelled
CI / Orchestrator Build (push) Has been cancelled
Security Scan / OWASP ZAP Scan (push) Has been cancelled
Security Scan / Dependency Vulnerability Scan (push) Has been cancelled
10 lines
298 B
JavaScript
10 lines
298 B
JavaScript
/** @type {import('jest').Config} */
|
|
module.exports = {
|
|
preset: "ts-jest",
|
|
testEnvironment: "node",
|
|
roots: ["<rootDir>/tests"],
|
|
testMatch: ["**/*.test.ts"],
|
|
testPathIgnorePatterns: ["/node_modules/", "/integration/", "/chaos/", "/load/"],
|
|
moduleFileExtensions: ["ts", "js", "json"],
|
|
};
|