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.
32 lines
692 B
32 lines
692 B
4 years ago
|
var tape = require('../');
|
||
|
|
||
|
tape.test('createMultipleStreams', function (tt) {
|
||
|
tt.plan(2);
|
||
|
|
||
|
var th = tape.createHarness();
|
||
|
th.createStream();
|
||
|
th.createStream();
|
||
|
|
||
|
var testOneComplete = false;
|
||
|
|
||
|
th('test one', function (tht) {
|
||
|
tht.plan(1);
|
||
|
setTimeout( function () {
|
||
|
tht.pass();
|
||
|
testOneComplete = true;
|
||
|
}, 100);
|
||
|
});
|
||
|
|
||
|
th('test two', function (tht) {
|
||
|
tht.ok(testOneComplete, 'test 1 completed before test 2');
|
||
|
tht.end();
|
||
|
});
|
||
|
|
||
|
th.onFinish(function () {
|
||
|
tt.equal(th._results.count, 2, "harness test ran");
|
||
|
tt.equal(th._results.fail, 0, "harness test didn't fail");
|
||
|
});
|
||
|
});
|
||
|
|
||
|
|