Initial commit, 90% there

This commit is contained in:
mdares
2025-12-02 16:27:21 +00:00
commit 755028af7e
7353 changed files with 1759505 additions and 0 deletions

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