add server previews

This commit is contained in:
Lee
2024-04-20 22:49:53 +01:00
parent 436c9be3e5
commit 321db2fb3d
4 changed files with 25 additions and 2 deletions

View File

@ -24,6 +24,7 @@ test("ensureGetPlayerSkinPartSuccess", async () => {
// Test each skin part
for (const part in skinParts) {
const partBuffer = await getPlayerSkinPart(part, player.uniqueId);
expect(partBuffer).toBeDefined();
expect(partBuffer.byteLength).toBeGreaterThan(0);
}