repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | /** @type {import('ts-jest').JestConfigWithTsJest} */ |
| #2 | module.exports = { |
| #3 | preset: "ts-jest", |
| #4 | testEnvironment: "node", |
| #5 | roots: ["<rootDir>/src", "<rootDir>/tests"], |
| #6 | testMatch: [ |
| #7 | "**/__tests__/**/*.+(ts|tsx|js)", |
| #8 | "**/?(*.)+(spec|test).+(ts|tsx|js)", |
| #9 | ], |
| #10 | transform: { |
| #11 | "^.+\\.(ts|tsx)$": [ |
| #12 | "ts-jest", |
| #13 | { |
| #14 | tsconfig: "tsconfig.test.json", |
| #15 | }, |
| #16 | ], |
| #17 | }, |
| #18 | moduleNameMapper: { |
| #19 | "^@/(.*)$": "<rootDir>/src/$1", |
| #20 | }, |
| #21 | setupFiles: ["dotenv/config"], |
| #22 | testPathIgnorePatterns: ["/node_modules/", "/dist/"], |
| #23 | moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"], |
| #24 | globals: { |
| #25 | "ts-jest": { |
| #26 | tsconfig: "tsconfig.test.json", |
| #27 | }, |
| #28 | }, |
| #29 | }; |
| #30 |