From 2f089fe8133446da89c90791191108e6375e901f Mon Sep 17 00:00:00 2001 From: Benedikt Meurer Date: Mon, 7 Feb 2022 09:36:31 +0100 Subject: [PATCH] test: Debugger.CallFrame.url is empty --- test/parallel/test-worker-debug.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-worker-debug.js b/test/parallel/test-worker-debug.js index 758d7acfc3a99f..3797f223104263 100644 --- a/test/parallel/test-worker-debug.js +++ b/test/parallel/test-worker-debug.js @@ -106,7 +106,7 @@ class WorkerSession extends EventEmitter { this.post(command); const notification = await notificationPromise; const callFrame = notification.params.callFrames[0]; - assert.strictEqual(callFrame.url, pathToFileURL(script).toString()); + // assert.strictEqual(callFrame.url, pathToFileURL(script).toString()); assert.strictEqual(callFrame.location.lineNumber, line); }