From a3825b77fadf6143f282e5cf4b68c084076b8369 Mon Sep 17 00:00:00 2001 From: freshgum Date: Sun, 4 Aug 2024 01:40:11 +0100 Subject: [PATCH] style(test/contrib/es): prettier suite --- test/contrib/es/es-service.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/contrib/es/es-service.spec.ts b/test/contrib/es/es-service.spec.ts index 564151ef..0cb7c59e 100644 --- a/test/contrib/es/es-service.spec.ts +++ b/test/contrib/es/es-service.spec.ts @@ -23,11 +23,11 @@ describe('ESService', () => { class ClassWithStaticMethodsAndProperties { static property = true; - static get getter () { + static get getter() { return 'value'; } - static method () { } + static method() {} } const context = createFakeClassDecoratorContext(ClassWithStaticMethodsAndProperties);