migrate js-api tests from Jest to Node.js native test runner (#12104)

This commit is contained in:
Denys Vuika
2026-07-28 20:04:31 +01:00
committed by GitHub
parent c316c6b594
commit 6c8b874704
58 changed files with 2355 additions and 4978 deletions
+13 -3
View File
@@ -3,12 +3,22 @@
"compilerOptions": {
"module": "CommonJS",
"moduleResolution": "node",
"target": "ES2015",
"target": "ES2020",
"esModuleInterop": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"lib": ["ESNext", "dom"],
"types": ["jest", "node"]
"lib": ["ESNext"],
"types": ["node"],
"baseUrl": "../../",
"paths": {
"@alfresco/js-api": ["lib/js-api/src/index.ts"]
}
},
"ts-node": {
"transpileOnly": true,
"compilerOptions": {
"module": "CommonJS"
}
},
"exclude": [],
"include": ["**/*"]