mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01:00
6fd147c4b0
PR-URL: https://github.com/nodejs/node/pull/47335 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Beth Griggs <bethanyngriggs@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
27 lines
536 B
JavaScript
27 lines
536 B
JavaScript
// Flags: --experimental-permission --allow-fs-read=*
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
common.skipIfWorker();
|
|
const assert = require('assert');
|
|
const {
|
|
Worker,
|
|
isMainThread,
|
|
} = require('worker_threads');
|
|
|
|
// Guarantee the initial state
|
|
{
|
|
assert.ok(!process.permission.has('worker'));
|
|
}
|
|
|
|
if (isMainThread) {
|
|
assert.throws(() => {
|
|
new Worker(__filename);
|
|
}, common.expectsError({
|
|
code: 'ERR_ACCESS_DENIED',
|
|
permission: 'WorkerThreads',
|
|
}));
|
|
} else {
|
|
assert.fail('it should not be called');
|
|
}
|