Feishu: fix locale-wrapper post parser test (#29576)

This commit is contained in:
Vincent Koc 2026-02-27 23:57:27 -08:00 committed by GitHub
parent b297bae027
commit f810932859
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -92,11 +92,13 @@ describe("parsePostContent", () => {
expect(parsePostContent(wrappedByPost)).toEqual({
textContent: "标题\n\n内容A",
imageKeys: [],
mediaKeys: [],
mentionedOpenIds: [],
});
expect(parsePostContent(wrappedByLocale)).toEqual({
textContent: "标题\n\n内容B",
imageKeys: [],
mediaKeys: [],
mentionedOpenIds: [],
});
});