feat: merge market core user id flow
This commit is contained in:
@@ -16,14 +16,19 @@ describe("batch-payload", () => {
|
||||
batchName: "618达人筛选第一批",
|
||||
createdAt: "2026-04-22T12:30:00.000Z",
|
||||
records: [
|
||||
{ authorId: "111", authorName: "达人A", status: "success" },
|
||||
{
|
||||
authorId: "111",
|
||||
authorName: "达人A",
|
||||
coreUserId: "core-111",
|
||||
status: "success"
|
||||
},
|
||||
{ authorId: "222", authorName: "达人B", status: "success" }
|
||||
]
|
||||
});
|
||||
|
||||
expect(payload).toEqual({
|
||||
authors: [
|
||||
{ authorId: "111", authorName: "达人A" },
|
||||
{ authorId: "111", authorName: "达人A", authorUid: "core-111" },
|
||||
{ authorId: "222", authorName: "达人B" }
|
||||
],
|
||||
batchName: "618达人筛选第一批",
|
||||
|
||||
Reference in New Issue
Block a user