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;