ToolJet/server/test/jest-e2e.json
Rupaak Srinivas 09c4759e19
feat: add fe support for python wf (#15119)
* feat: add fe support for python wf

* feat(workflows): merge Python workflow frontend support

- Update submodule references for frontend/ee and server/ee
- Fix E2E test for REST API query (use jsonplaceholder instead of reqres.in)
- Rename test files to use kebab-case (workflow-executions.e2e-spec.ts)
- Update Python executor service interface and implementation
- Fix Python bundle generation tests

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

---------

Co-authored-by: Akshay Sasidharan <akshaysasidharan93@gmail.com>
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-02 19:57:55 +05:30

43 lines
No EOL
1.3 KiB
JSON

{
"moduleFileExtensions": [
"js",
"json",
"ts",
"node"
],
"rootDir": ".",
"testEnvironment": "node",
"testRegex": ".e2e-spec.ts$",
"runner": "groups",
"testTimeout": 60000,
"forceExit": true,
"detectOpenHandles": true,
"transformIgnorePatterns": [
"node_modules/(?!(lib0|y-protocols|@octokit|before-after-hook|universal-user-agent|universal-github-app-jwt|cookie-parser)/)"
],
"transform": {
"^.+\\.(t|j)s$": [
"ts-jest",
{
"tsconfig": "<rootDir>/../tsconfig.json"
}
]
},
"moduleNameMapper": {
"^lib/utils$": "<rootDir>/../lib/utils.ts",
"^ormconfig$": "<rootDir>/../ormconfig.ts",
"^src/(.*)": "<rootDir>/../src/$1",
"^scripts/(.*)": "<rootDir>/../scripts/$1",
"@plugins/(.*)": "<rootDir>/../plugins/$1",
"@dto/(.*)": "<rootDir>/../src/dto/$1",
"@services/(.*)": "<rootDir>/../src/services/$1",
"@entities/(.*)": "<rootDir>/../src/entities/$1",
"@controllers/(.*)": "<rootDir>/../src/controllers/$1",
"@modules/(.*)": "<rootDir>/../src/modules/$1",
"@ee/(.*)": "<rootDir>/../ee/$1",
"@helpers/(.*)": "<rootDir>/../src/helpers/$1",
"@licensing/(.*)": "<rootDir>/../ee/licensing/$1",
"@instance-settings/(.*)": "<rootDir>/../ee/instance-settings/$1",
"@otel/(.*)": "<rootDir>/../src/otel/$1"
}
}