chore(cloudcmd) lint

This commit is contained in:
coderaiser 2022-06-14 14:38:11 +03:00
parent 81e76857da
commit ef10ebe97c
40 changed files with 137 additions and 134 deletions

View file

@ -6,8 +6,8 @@ const {once} = require('events');
const test = require('supertape');
const io = require('socket.io-client');
const configPath = path.join(__dirname, '../..', 'server', 'config');
const {connect} = require('../before');
const configPath = path.join(__dirname, '../..', 'server', 'config');
const configFn = require(configPath).createConfig();
test('cloudcmd: console: enabled', async (t) => {

View file

@ -42,7 +42,7 @@ test('cloudcmd: modules', async (t) => {
options,
});
t.deepEqual(body, expected, 'should equal');
t.deepEqual(body, expected);
t.end();
});