chore: cloudcmd: actions: lint ☘️

This commit is contained in:
coderaiser 2026-07-15 20:27:25 +00:00
parent 7edea50296
commit fe185cc93e
3 changed files with 1 additions and 4 deletions

View file

@ -120,4 +120,3 @@ test('util: escapeRegExp', (t) => {
t.equal(result, expected);
t.end();
});

View file

@ -47,4 +47,3 @@ test('cloudcmd: exit.error: console.error: error', (t) => {
t.calledWith(errorStub, ['hello world'], 'should call console.error');
t.end();
});

View file

@ -50,8 +50,7 @@ function before(options, fn = options) {
}));
server.listen(() => {
fn(server
.address().port, promisify(after));
fn(server.address().port, promisify(after));
});
}