Skip to content

Commit

Permalink
stream locking
Browse files Browse the repository at this point in the history
  • Loading branch information
YDarma authored and ljharb committed May 25, 2022
1 parent 201e650 commit cb87b29
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 3 deletions.
16 changes: 13 additions & 3 deletions index.js
Expand Up @@ -5,6 +5,7 @@ var createDefaultStream = require('./lib/default_stream');
var Test = require('./lib/test');
var createResult = require('./lib/results');
var through = require('@ljharb/through');
var EventEmitter = require('events').EventEmitter;

var canEmitExit = typeof process !== 'undefined' && process
&& typeof process.on === 'function' && process.browser !== true;
Expand Down Expand Up @@ -53,6 +54,10 @@ module.exports = (function () {
return harness.createStream(options);
};

lazyLoad.async = function () {
return getHarness().async.apply(this, arguments);

Check warning on line 58 in index.js

View check run for this annotation

Codecov / codecov/patch

index.js#L58

Added line #L58 was not covered by tests
};

lazyLoad.onFinish = function () {
return getHarness().onFinish.apply(this, arguments);
};
Expand Down Expand Up @@ -142,10 +147,15 @@ function createExitHarness(conf, wait) {
stream.on('end', function () { ended = true; });
}

run();

if (wait) {
harness.run = run;
} else {
run();
var waiter = new EventEmitter();
waiter.run = function () {};
harness._results.push(waiter);
harness.run = function () {
waiter.emit('end');

Check warning on line 157 in index.js

View check run for this annotation

Codecov / codecov/patch

index.js#L153-L157

Added lines #L153 - L157 were not covered by tests
};
}

if (config.exit === false) { return harness; }
Expand Down
33 changes: 33 additions & 0 deletions test/wait-run-object-stream.js
@@ -0,0 +1,33 @@
'use strict';

var tap = require('tap');
var tape = require('../');

tap.test('Create stream then import async tests', function (t) {
t.plan(3);

var actualTests = function () {
tape('This one should pass', function (t1) {
t1.pass('This one should pass');
t1.end();
});
};

var simulateAsyncEsmImport = function () {
return new Promise(function (resolve) {
setTimeout(function () {
actualTests();
resolve();
});
});
};

tape.createStream({ objectMode: true }).on('data', function (res) {
t.pass(res.type);
});

tape.wait();
simulateAsyncEsmImport().then(function () {
tape.run();
});
});

0 comments on commit cb87b29

Please sign in to comment.