* new tests folders organizations * 📝 (nightly_build.yml): update tests_folder path from "tests/scheduled" to "tests/core" to reflect the correct location of the tests folder * renaming test folder * changing e2e to integrations folder * 📝 (frontend/tsconfig.json): update test file paths to reflect changes in folder structure for better organization and clarity * change assets folder * 📝 (frontend): update file paths to remove redundant 'core' directory in test assets * 📝 (Document QA.spec.ts, Vector Store.spec.ts, fileUploadComponent.spec.ts): Update file paths to correctly reference test assets in integration and unit tests. * github suggestions
63 lines
2.2 KiB
JSON
63 lines
2.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"noImplicitAny": false,
|
|
"paths": {
|
|
"@/*": ["*"],
|
|
"@queries/*": ["controllers/API/queries/*"]
|
|
},
|
|
"baseUrl": "src"
|
|
},
|
|
"include": [
|
|
"src",
|
|
"tests/core/saveComponents.spec.ts",
|
|
"tests/extended/actionsMainPage-shard-1.spec.ts",
|
|
"tests/core/auto_login.spec.ts",
|
|
"tests/core/unit/chatInputOutput.spec.ts",
|
|
"tests/extended/integrations/chatInputOutputUser-shard-2.spec.ts",
|
|
"tests/core/unit/codeAreaModalComponent.spec.ts",
|
|
"tests/extended/features/curlApiGeneration.spec.ts",
|
|
"tests/extended/features/deleteFlows.spec.ts",
|
|
"tests/extended/features/dragAndDrop.spec.ts",
|
|
"tests/core/unit/dropdownComponent.spec.ts",
|
|
"tests/core/unit/fileUploadComponent.spec.ts",
|
|
"tests/core/filterEdge.spec.ts",
|
|
"tests/core/unit/floatComponent.spec.ts",
|
|
"tests/extended/features/flowPage.spec.ts",
|
|
"tests/extended/features/flowSettings.spec.ts",
|
|
"tests/extended/regression/generalBugs-shard-0.spec.ts",
|
|
"tests/core/globalVariables.spec.ts",
|
|
"tests/core/group.spec.ts",
|
|
"tests/extended/folders.spec.ts",
|
|
"tests/core/unit/inputComponent.spec.ts",
|
|
"tests/core/inputListComponent.spec.ts",
|
|
"tests/core/unit/intComponent.spec.ts",
|
|
"tests/core/keyPairListComponent.spec.ts",
|
|
"tests/extended/features/langflowShortcuts.spec.ts",
|
|
"tests/core/nestedComponent.spec.ts",
|
|
"tests/core/unit/promptModalComponent.spec.ts",
|
|
"tests/core/python_api_generation.spec.ts",
|
|
"tests/core/unit/textAreaModalComponent.spec.ts",
|
|
"tests/core/textInputOutput.spec.ts",
|
|
"tests/core/unit/toggleComponent.spec.ts",
|
|
"tests/core/tweaks_test.spec.ts",
|
|
"tests/extended/features/twoEdges.spec.ts",
|
|
"tests/extended/features/userSettings.spec.ts",
|
|
"tests/core/store.spec.ts",
|
|
"tests/core/logs.spec.ts"
|
|
]
|
|
}
|