@ricsam/isolate-daemon 0.1.9 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cjs/package.json
CHANGED
package/dist/mjs/connection.mjs
CHANGED
|
@@ -504,7 +504,7 @@ async function handleCreateRuntime(message, connection, state) {
|
|
|
504
504
|
console: playwrightCallbacks.console,
|
|
505
505
|
onEvent: (event) => {
|
|
506
506
|
if (event.type === "browserConsoleLog" && playwrightCallbacks.onBrowserConsoleLogCallbackId) {
|
|
507
|
-
const promise = invokeClientCallback(connection, playwrightCallbacks.onBrowserConsoleLogCallbackId, [{ level: event.level,
|
|
507
|
+
const promise = invokeClientCallback(connection, playwrightCallbacks.onBrowserConsoleLogCallbackId, [{ level: event.level, stdout: event.stdout, timestamp: event.timestamp }]).catch(() => {});
|
|
508
508
|
pendingCallbacks.push(promise);
|
|
509
509
|
} else if (event.type === "networkRequest" && playwrightCallbacks.onNetworkRequestCallbackId) {
|
|
510
510
|
const promise = invokeClientCallback(connection, playwrightCallbacks.onNetworkRequestCallbackId, [event]).catch(() => {});
|
|
@@ -1785,4 +1785,4 @@ export {
|
|
|
1785
1785
|
handleConnection
|
|
1786
1786
|
};
|
|
1787
1787
|
|
|
1788
|
-
//# debugId=
|
|
1788
|
+
//# debugId=2A1E0650E9CDD7A964756E2164756E21
|