chore: cloudcmd: actions: lint ☘️

This commit is contained in:
coderaiser 2025-07-05 17:40:30 +00:00
parent 1d983e9950
commit 74f5eb0cae
2 changed files with 4 additions and 4 deletions

View file

@ -23,7 +23,7 @@ test('columns: dev', (t) => {
const css = fs.readFileSync(`${__dirname}/../css/columns/name-size-date.css`, 'utf8');
t.ok(columns['name-size-date'].includes(css));
t.match(columns['name-size-date'], css);
t.end();
});
@ -35,6 +35,6 @@ test('columns: no args', (t) => {
const css = fs.readFileSync(`${__dirname}/../css/columns/name-size-date.css`, 'utf8');
isDev(currentIsDev);
t.ok(columns['name-size-date'].includes(css));
t.match(columns['name-size-date'], css);
t.end();
});

View file

@ -14,7 +14,7 @@ test('themes: dev', (t) => {
const css = fs.readFileSync(`${__dirname}/../css/themes/dark.css`, 'utf8');
t.ok(themes.dark.includes(css));
t.match(themes.dark, css);
t.end();
});
@ -26,6 +26,6 @@ test('themes: no args', (t) => {
const css = fs.readFileSync(`${__dirname}/../css/themes/light.css`, 'utf8');
isDev(currentIsDev);
t.ok(themes.light.includes(css));
t.match(themes.light, css);
t.end();
});