Skip to content

Commit f2ef160

Browse files
committed
chore: cloudcmd: actions: lint ☘️
1 parent be4f627 commit f2ef160

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

client/dom/index.spec.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ test('cloudcmd: client: dom: getCSSVar', (t) => {
3838
global.getComputedStyle = stub().returns({
3939
getPropertyValue,
4040
});
41-
const result = getCSSVar('hello', {body});
41+
const result = getCSSVar('hello', {
42+
body,
43+
});
4244
delete global.getComputedStyle;
4345

4446
t.notOk(result);
@@ -52,7 +54,9 @@ test('cloudcmd: client: dom: getCSSVar: 1', (t) => {
5254
global.getComputedStyle = stub().returns({
5355
getPropertyValue,
5456
});
55-
const result = getCSSVar('hello', {body});
57+
const result = getCSSVar('hello', {
58+
body,
59+
});
5660

5761
delete global.getComputedStyle;
5862

0 commit comments

Comments
 (0)