From b8205cd71f9c9553e6a5c9344d316be49704490a Mon Sep 17 00:00:00 2001 From: Pig Fang Date: Sat, 5 Feb 2022 16:24:37 +0800 Subject: [PATCH] apply Prettier fixes --- .../assets/tests/__mocks__/skinview3d.ts | 41 +++++++++++-------- 1 file changed, 25 insertions(+), 16 deletions(-) diff --git a/resources/assets/tests/__mocks__/skinview3d.ts b/resources/assets/tests/__mocks__/skinview3d.ts index 463512b0..8054e86b 100644 --- a/resources/assets/tests/__mocks__/skinview3d.ts +++ b/resources/assets/tests/__mocks__/skinview3d.ts @@ -38,25 +38,34 @@ export class RootAnimation { export function createOrbitControls() { return { - dispose() {} + dispose() {}, } } -export const WalkingAnimation = new Proxy({}, { - get() { - return jest.fn() - } -}) -export const RunningAnimation = new Proxy({}, { - get() { - return jest.fn() - } -}) -export const RotatingAnimation = new Proxy({}, { - get() { - return jest.fn() - } -}) +export const WalkingAnimation = new Proxy( + {}, + { + get() { + return jest.fn() + }, + }, +) +export const RunningAnimation = new Proxy( + {}, + { + get() { + return jest.fn() + }, + }, +) +export const RotatingAnimation = new Proxy( + {}, + { + get() { + return jest.fn() + }, + }, +) export function isSlimSkin() { return false