feat: merge market core user id flow

This commit is contained in:
2026-05-11 10:22:45 +08:00
parent 2e049ef718
commit 1de508f2c7
14 changed files with 90 additions and 4 deletions
+5
View File
@@ -50,6 +50,7 @@ describe("silent-export-controller", () => {
authors: [
{
attribute_datas: {
core_user_id: `core-${pageNo}`,
nickname: `达人${pageNo}`,
price_20_60: pageNo * 1000
},
@@ -93,6 +94,10 @@ describe("silent-export-controller", () => {
}
]);
expect(records?.map((record) => record.authorId)).toEqual(["2", "3"]);
expect(records?.map((record) => record.coreUserId)).toEqual([
"core-2",
"core-3"
]);
});
test("replays paged exports when the page number is nested inside the request body", async () => {