Dia antes primera install

This commit is contained in:
2025-12-08 15:20:28 -06:00
commit 1416478c9c
4130 changed files with 886376 additions and 0 deletions

17
node_modules/inspect-property/test/main.test.js generated vendored Normal file
View File

@@ -0,0 +1,17 @@
'use strict';
const inspectProperty = require('../');
const testSpecs = require('./specs/main-specs.js');
testSpecs.forEach(spec => {
describe(spec.description, function(){
const method = spec.method ? inspectProperty[spec.method] : inspectProperty;
const input = spec.input;
const output = spec.fn(method, input);
spec.tests.forEach(test => {
it(test.description, function(){
return test.fn(output, input);
});
});
});
});