feat: update package.json to include mocha and chai for testing, add ansi-colors and fastest-levenshtein dependencies

refactor: modify sliceAndWriteCalls function to accept folderPath parameter and update driver function to use it

fix: enhance isNodeModule function to utilize builtinModules for better module detection

chore: remove unused constants file from utils

test: clean up instantiation.spec.js by removing commented assertions
This commit is contained in:
2025-08-07 15:33:52 +01:00
parent 91bf93e3f6
commit 393e22bd45
6 changed files with 861 additions and 23 deletions

View File

@@ -113,9 +113,6 @@ describe('Instantiation tests',function () {
console.log(ans);
assert.isArray(ans);
assert.isArray([10, 'a'], ans);
// assert.isBoolean(ans.x);
// assert.isObject(ans.parent);
// assert.isNumber(ans.data);
})