feature: cloudcmd: html-looks-like: remove

This commit is contained in:
coderiaser 2025-07-24 15:04:57 +03:00
parent f0bc286aea
commit 61107329fc
2 changed files with 0 additions and 5 deletions

View file

@ -4,7 +4,6 @@ const fs = require('node:fs');
const tryCatch = require('try-catch');
const test = require('supertape');
const htmlLooksLike = require('html-looks-like');
const readFilesSync = require('@cloudcmd/read-files-sync');
const {time, timeEnd} = require(`../../common/util`);
@ -90,9 +89,6 @@ test('cloudfunc: render', (t) => {
}
t.equal(result, Expect, 'should be equal rendered json data');
htmlLooksLike(result, Expect);
t.end();
});