test: Add unit test for projects/app/src/pages/api/core/dataset/collection/paths.ts (#4350)

* Add unit tests for getDatasetCollectionPaths function and modify paths.ts to export handler.

* Update paths.ts

---------

Co-authored-by: gru-agent[bot] <185149714+gru-agent[bot]@users.noreply.github.com>
Co-authored-by: Archer <545436317@qq.com>
This commit is contained in:
gru-agent[bot]
2025-03-27 10:41:24 +08:00
committed by GitHub
parent 0778508908
commit f483832749
2 changed files with 88 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ import { ParentTreePathItemType } from '@fastgpt/global/common/parentFolder/type
import { MongoDatasetCollection } from '@fastgpt/service/core/dataset/collection/schema';
import { NextAPI } from '@/service/middleware/entry';
async function handler(req: NextApiRequest) {
export async function handler(req: NextApiRequest) {
const { parentId } = req.query as { parentId: string };
if (!parentId) {