@lvce-editor/test-with-playwright-worker 14.0.0 → 14.2.0
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/workerMain.js +8 -8
- package/package.json +2 -2
package/dist/workerMain.js
CHANGED
|
@@ -714,14 +714,14 @@ const execute = (command, ...args) => {
|
|
|
714
714
|
};
|
|
715
715
|
|
|
716
716
|
const Two = '2.0';
|
|
717
|
-
const create$
|
|
717
|
+
const create$t = (method, params) => {
|
|
718
718
|
return {
|
|
719
719
|
jsonrpc: Two,
|
|
720
720
|
method,
|
|
721
721
|
params
|
|
722
722
|
};
|
|
723
723
|
};
|
|
724
|
-
const create$
|
|
724
|
+
const create$s = (id, method, params) => {
|
|
725
725
|
const message = {
|
|
726
726
|
id,
|
|
727
727
|
jsonrpc: Two,
|
|
@@ -731,14 +731,14 @@ const create$r = (id, method, params) => {
|
|
|
731
731
|
return message;
|
|
732
732
|
};
|
|
733
733
|
let id = 0;
|
|
734
|
-
const create$
|
|
734
|
+
const create$r = () => {
|
|
735
735
|
return ++id;
|
|
736
736
|
};
|
|
737
737
|
|
|
738
738
|
/* eslint-disable n/no-unsupported-features/es-syntax */
|
|
739
739
|
|
|
740
740
|
const registerPromise = map => {
|
|
741
|
-
const id = create$
|
|
741
|
+
const id = create$r();
|
|
742
742
|
const {
|
|
743
743
|
promise,
|
|
744
744
|
resolve
|
|
@@ -756,7 +756,7 @@ const invokeHelper = async (callbacks, ipc, method, params, useSendAndTransfer)
|
|
|
756
756
|
id,
|
|
757
757
|
promise
|
|
758
758
|
} = registerPromise(callbacks);
|
|
759
|
-
const message = create$
|
|
759
|
+
const message = create$s(id, method, params);
|
|
760
760
|
if (useSendAndTransfer && ipc.sendAndTransfer) {
|
|
761
761
|
ipc.sendAndTransfer(message);
|
|
762
762
|
} else {
|
|
@@ -792,7 +792,7 @@ const createRpc = ipc => {
|
|
|
792
792
|
* @deprecated
|
|
793
793
|
*/
|
|
794
794
|
send(method, ...params) {
|
|
795
|
-
const message = create$
|
|
795
|
+
const message = create$t(method, params);
|
|
796
796
|
ipc.send(message);
|
|
797
797
|
}
|
|
798
798
|
};
|
|
@@ -828,7 +828,7 @@ const listen = async (module, options) => {
|
|
|
828
828
|
const ipc = module.wrap(rawIpc);
|
|
829
829
|
return ipc;
|
|
830
830
|
};
|
|
831
|
-
const create$
|
|
831
|
+
const create$7 = async ({
|
|
832
832
|
commandMap
|
|
833
833
|
}) => {
|
|
834
834
|
// TODO create a commandMap per rpc instance
|
|
@@ -840,7 +840,7 @@ const create$6 = async ({
|
|
|
840
840
|
};
|
|
841
841
|
const NodeWorkerRpcClient = {
|
|
842
842
|
__proto__: null,
|
|
843
|
-
create: create$
|
|
843
|
+
create: create$7
|
|
844
844
|
};
|
|
845
845
|
|
|
846
846
|
const rpcs = Object.create(null);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lvce-editor/test-with-playwright-worker",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.2.0",
|
|
4
4
|
"description": "Worker package for test-with-playwright",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"type": "module",
|
|
13
13
|
"main": "dist/workerMain.js",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@playwright/test": "1.58.
|
|
15
|
+
"@playwright/test": "1.58.1"
|
|
16
16
|
},
|
|
17
17
|
"engines": {
|
|
18
18
|
"node": ">=24"
|