chore: cloudcmd: actions: lint ☘️

This commit is contained in:
coderaiser 2026-07-16 12:27:35 +00:00
parent fec5538f01
commit e4ff4a78cc

View file

@ -250,9 +250,11 @@ test('cloudfunc: getTitle: no options', (t) => {
}); });
test('cloudfunc: getTitle: with name', (t) => { test('cloudfunc: getTitle: with name', (t) => {
const result = getTitle({name: 'MyName'}); const result = getTitle({
name: 'MyName',
});
t.ok(result.includes('MyName'), 'should return title with name'); t.match(result, 'MyName', 'should return title with name');
t.end(); t.end();
}); });