From f2ef160ca8bb44eec1fddb629790c916c83a6c9b Mon Sep 17 00:00:00 2001 From: coderaiser Date: Wed, 6 Nov 2024 15:01:08 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20cloudcmd:=20actions:=20lint=20?= =?UTF-8?q?=E2=98=98=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/dom/index.spec.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/client/dom/index.spec.js b/client/dom/index.spec.js index db4d8f09..4b42f5c1 100644 --- a/client/dom/index.spec.js +++ b/client/dom/index.spec.js @@ -38,7 +38,9 @@ test('cloudcmd: client: dom: getCSSVar', (t) => { global.getComputedStyle = stub().returns({ getPropertyValue, }); - const result = getCSSVar('hello', {body}); + const result = getCSSVar('hello', { + body, + }); delete global.getComputedStyle; t.notOk(result); @@ -52,7 +54,9 @@ test('cloudcmd: client: dom: getCSSVar: 1', (t) => { global.getComputedStyle = stub().returns({ getPropertyValue, }); - const result = getCSSVar('hello', {body}); + const result = getCSSVar('hello', { + body, + }); delete global.getComputedStyle;