chore: cloudcmd: actions: lint ☘️

This commit is contained in:
coderaiser 2024-11-06 15:01:08 +00:00
parent be4f6271f4
commit f2ef160ca8

View file

@ -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;