Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rubennorte committed Mar 7, 2019
1 parent 1c05548 commit 135bf24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/jest-worker/src/workers/ChildProcessWorker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export default class ChildProcessWorker implements WorkerInterface {
// while waiting for a new request (timers, unhandled rejections...)
this._request = null;
return onProcessEnd(...args);
}
};

this._request = request;
this._retries = 0;
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-worker/src/workers/NodeThreadsWorker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export default class ExperimentalWorker implements WorkerInterface {
// while waiting for a new request (timers, unhandled rejections...)
this._request = null;
return onProcessEnd(...args);
}
};

this._request = request;
this._retries = 0;
Expand Down

0 comments on commit 135bf24

Please sign in to comment.