summaryrefslogtreecommitdiff
path: root/test/parallel/test-worker-syntax-error-file.js
blob: ca42c1748085001ab498ec65d6f7f554551105ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
'use strict';
const common = require('../common');
const fixtures = require('../common/fixtures');
const assert = require('assert');
const { Worker } = require('worker_threads');

// Do not use isMainThread so that this test itself can be run inside a Worker.
if (!process.env.HAS_STARTED_WORKER) {
  process.env.HAS_STARTED_WORKER = 1;
  const w = new Worker(fixtures.path('syntax', 'bad_syntax.js'));
  w.on('message', common.mustNotCall());
  w.on('error', common.mustCall((err) => {
    assert.strictEqual(err.constructor, SyntaxError);
    assert(/SyntaxError/.test(err));
  }));
} else {
  throw new Error('foo');
}