StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
844 B
26 lines
844 B
var assert = require('chai').assert;
|
|
|
|
// we need to define our own deepEqual function that ignores properties that are not hasOwnProperty. Not supported in chai.assert.deepEqual as of v3.0.0.
|
|
function deepOwnEqual(a, b) {
|
|
|
|
// if arrays of objects, recurse down to the objects
|
|
if(Array.isArray(a) && Array.isArray(b)) {
|
|
assert.deepEqual(a.length, b.length, 'Arrays have different lengths')
|
|
for(var i=0; i<a.length; i++) {
|
|
deepOwnEqual(a[i], b[i])
|
|
}
|
|
}
|
|
// compare all the object properties
|
|
else {
|
|
var aKeys = Object.keys(a);
|
|
var bKeys = Object.keys(b);
|
|
|
|
assert.deepEqual(aKeys, bKeys, 'Objects have different keys');
|
|
|
|
aKeys.forEach(function(key) {
|
|
assert.deepEqual(a[key], b[key], 'Expected values of "' + key + '" property to be equal in each object')
|
|
});
|
|
}
|
|
}
|
|
|
|
module.exports = deepOwnEqual |