Files
Kmake/test/parallel/test-worker-load-file-with-extension-other-than-js.js
2026-05-26 23:36:42 -07:00

10 lines
228 B
JavaScript

'use strict';
const common = require('../common');
const fixtures = require('../common/fixtures');
const { Worker } = require('worker_threads');
(common.mustCall(() => {
new Worker(fixtures.path('worker-script.ts'));
}))();