Skip to content

Commit c829448

Browse files
committed
disable flaky test
1 parent ec794c6 commit c829448

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/tests/worker.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,10 @@ if (Worker) {
6464
});
6565

6666
for (let i = 0; i < 5; ++i) {
67-
it(`can kill worker thread while in use #${i}`, function(done) { // jshint ignore:line
67+
// disabled until we can address flakiness
68+
it.skip(`can kill worker thread while in use #${i}`, function(done) { // jshint ignore:line
6869
const workerPath = local("../utils/worker.js");
69-
const worker = new Worker(workerPath, {
70+
const worker = new Worker(workerPath, {
7071
workerData: {
7172
clonePath,
7273
url: "https://github.com/nodegit/test.git"

0 commit comments

Comments
 (0)