We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec794c6 commit c829448Copy full SHA for c829448
test/tests/worker.js
@@ -64,9 +64,10 @@ if (Worker) {
64
});
65
66
for (let i = 0; i < 5; ++i) {
67
- it(`can kill worker thread while in use #${i}`, function(done) { // jshint ignore:line
+ // disabled until we can address flakiness
68
+ it.skip(`can kill worker thread while in use #${i}`, function(done) { // jshint ignore:line
69
const workerPath = local("../utils/worker.js");
- const worker = new Worker(workerPath, {
70
+ const worker = new Worker(workerPath, {
71
workerData: {
72
clonePath,
73
url: "https://github.com/nodegit/test.git"
0 commit comments