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

@ -177,7 +177,6 @@
"globals": "^16.3.0",
"gritty": "^8.0.0",
"gunzip-maybe": "^1.3.1",
"html-looks-like": "^1.0.2",
"html-webpack-plugin": "^5.6.3",
"inherits": "^2.0.3",
"just-capitalize": "^3.2.0",

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();
});