feat: removed console

This commit is contained in:
lohxt1 2024-09-24 21:51:18 +05:30
parent 5fd6773f43
commit 1c110f0cb0

View File

@ -191,7 +191,6 @@ const getBruFilesRecursively = (dir, testsOnly) => {
if (!stats.isDirectory() && path.extname(filePath) === '.bru') {
const bruContent = fs.readFileSync(filePath, 'utf8');
// console.log('filePath 2', filePath);
const bruJson = bruToJson(bruContent);
const requestHasTests = bruJson.request?.tests;
const requestHasActiveAsserts = bruJson.request?.assertions.some((x) => x.enabled) || false;