@lvce-editor/test-worker 9.2.0 → 9.3.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/api.d.ts +3 -0
- package/dist/testWorkerMain.js +0 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -269,6 +269,9 @@ interface ExtensionDetail {
|
|
|
269
269
|
}
|
|
270
270
|
|
|
271
271
|
interface ExtensionSearch {
|
|
272
|
+
readonly copyExtensionId: () => Promise<void>;
|
|
273
|
+
readonly copyExtensionInfo: () => Promise<void>;
|
|
274
|
+
readonly handleContextMenu: (button: number, x: number, y: number) => Promise<void>;
|
|
272
275
|
readonly handleInput: (value: string) => Promise<void>;
|
|
273
276
|
readonly open: () => Promise<void>;
|
|
274
277
|
}
|
package/dist/testWorkerMain.js
CHANGED
|
@@ -1422,7 +1422,6 @@ class Expect {
|
|
|
1422
1422
|
}
|
|
1423
1423
|
async toHaveAttribute(key, value) {
|
|
1424
1424
|
string(key, 'key must be of type string');
|
|
1425
|
-
// Assert.string(value, 'value must be of type string')
|
|
1426
1425
|
return this.checkSingleElementCondition('toHaveAttribute', {
|
|
1427
1426
|
key,
|
|
1428
1427
|
value
|