We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f75e62c commit a4592c0Copy full SHA for a4592c0
test/eval.spec.js
@@ -8,7 +8,6 @@ describe('eval.js', function () {
8
9
it('should eval the given code', function () {
10
var wrk = new Worker(__dirname + '/../lib/eval.js');
11
- wrk.postMessage('process.send(JSON.stringify("abc"))');
12
13
var result = null;
14
var done = false;
@@ -18,6 +17,7 @@ describe('eval.js', function () {
18
17
done = true;
19
wrk.terminate();
20
};
+ wrk.postMessage('process.send(JSON.stringify("abc"))');
21
});
22
23
waitsFor(function () {
0 commit comments