This commit is contained in:
dangered wolf 2024-09-23 13:31:22 +02:00
parent e53d84905e
commit ba1fe88ad5
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -140,7 +140,8 @@ test('API fetch basic Status', async () => {
expect(status.author.name).toBeTruthy();
expect(status.author.avatar_url).toBeTruthy();
expect(status.author.banner_url).toBeTruthy();
expect(status.replies).toBeGreaterThan(0);
// The reply count now returns 0 as of some time between Sep 17-19 2024 from guest API. No idea why.
// expect(status.replies).toBeGreaterThan(0);
// @ts-expect-error retweets only in legacy API
expect(status.retweets).toBeGreaterThan(0);
expect(status.likes).toBeGreaterThan(0);