chore(cloudcmd) actions: lint ☘️

This commit is contained in:
coderaiser 2022-07-11 17:48:36 +00:00
parent c337e4507d
commit 10bd261a3f

View file

@ -142,17 +142,16 @@ test('current-file: isCurrentFile: no', (t) => {
DOM,
CloudCmd,
} = global;
global.DOM = getDOM();
global.CloudCmd = getCloudCmd();
const result = currentFile.isCurrentFile();
const expect = false;
global.DOM = DOM;
global.CloudCmd = CloudCmd;
t.equal(result, expect);
t.notOk(result);
t.end();
});