diff --git a/@sammo/server/src/worker_test.ts b/@sammo/server/src/worker_test.ts index 57e1ad9..269c875 100644 --- a/@sammo/server/src/worker_test.ts +++ b/@sammo/server/src/worker_test.ts @@ -6,8 +6,8 @@ console.log("Hello from worker_test.ts!"); const __filename = fileURLToPath(new URL(import.meta.url)); const __dirname = nodePath.dirname(__filename); -const worker_b_ts = nodePath.join(__dirname, "worker_b.ts"); -const worker_a_ts = nodePath.join(__dirname, "worker_a.ts"); +const worker_b_ts = nodePath.join(__dirname, "worker_b"); +const worker_a_ts = nodePath.join(__dirname, "worker_a"); const worker_b = new Worker(worker_b_ts); const worker_a = new Worker(worker_a_ts);