@lvce-editor/test-with-playwright 2.23.0 → 2.24.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/api.d.ts +24 -3
- package/package.json +2 -2
package/api.d.ts
CHANGED
|
@@ -123,11 +123,18 @@ declare const addWebExtension: (relativePath: string) => Promise<void>;
|
|
|
123
123
|
declare const addNodeExtension: (relativePath: string) => Promise<void>;
|
|
124
124
|
declare const selectFeature: (name: string) => Promise<void>;
|
|
125
125
|
declare const selectTab: (name: string) => Promise<void>;
|
|
126
|
+
declare const selectDetails: () => Promise<void>;
|
|
127
|
+
declare const selectFeatures: () => Promise<void>;
|
|
128
|
+
declare const selectChangelog: () => Promise<void>;
|
|
126
129
|
declare const open: (extensionId: string) => Promise<void>;
|
|
127
130
|
declare const openFeature: (featureName: string) => Promise<void>;
|
|
128
131
|
declare const openThemes: () => Promise<void>;
|
|
129
132
|
declare const openCommands: () => Promise<void>;
|
|
130
133
|
declare const openWebViews: () => Promise<void>;
|
|
134
|
+
declare const openRuntimeStatus: () => Promise<void>;
|
|
135
|
+
declare const openJsonValidation: () => Promise<void>;
|
|
136
|
+
declare const openSettings: () => Promise<void>;
|
|
137
|
+
declare const handleScroll: (scrollTop: number) => Promise<void>;
|
|
131
138
|
declare const writeFile: (path: string, content: string) => Promise<void>;
|
|
132
139
|
declare const mkdir: (path: string) => Promise<void>;
|
|
133
140
|
declare const remove: (uri: string) => Promise<void>;
|
|
@@ -238,11 +245,21 @@ declare const togglePreserveCase: () => Promise<void>;
|
|
|
238
245
|
declare const toggleUseRegularExpression: () => Promise<void>;
|
|
239
246
|
declare const toggleReplace: () => Promise<void>;
|
|
240
247
|
declare const update: (settings: any) => Promise<void>;
|
|
248
|
+
declare const show$2: () => Promise<void>;
|
|
249
|
+
declare const handleInput$2: (searchValue: string) => Promise<void>;
|
|
250
|
+
declare const usePreviousSearchValue: () => Promise<void>;
|
|
251
|
+
declare const useNextSearchValue: () => Promise<void>;
|
|
252
|
+
declare const clear: (searchValue: string) => Promise<void>;
|
|
253
|
+
declare const selectTab$1: (tabId: string) => Promise<void>;
|
|
254
|
+
declare const selectWorkspace: () => Promise<void>;
|
|
255
|
+
declare const selectTextEditor: () => Promise<void>;
|
|
256
|
+
declare const selectExtensions: () => Promise<void>;
|
|
257
|
+
declare const handleScroll$1: (scrollTop: number) => Promise<void>;
|
|
241
258
|
declare const open$4: (id: string) => Promise<void>;
|
|
242
259
|
declare const hide: () => Promise<void>;
|
|
243
260
|
declare const selectIndex$5: (index: number) => Promise<void>;
|
|
244
261
|
declare const acceptInput: () => Promise<void>;
|
|
245
|
-
declare const handleInput$
|
|
262
|
+
declare const handleInput$3: (text: string) => Promise<void>;
|
|
246
263
|
declare const handleClickSourceControlButtons: (index: number, name: string) => Promise<void>;
|
|
247
264
|
declare const update$1: () => Promise<void>;
|
|
248
265
|
declare const closeMenu: () => Promise<void>;
|
|
@@ -305,7 +322,7 @@ declare namespace Extension {
|
|
|
305
322
|
export { addNodeExtension, addWebExtension };
|
|
306
323
|
}
|
|
307
324
|
declare namespace ExtensionDetail {
|
|
308
|
-
export { open, openCommands, openFeature, openThemes, openWebViews, selectFeature, selectTab };
|
|
325
|
+
export { handleScroll, open, openCommands, openFeature, openJsonValidation, openRuntimeStatus, openSettings, openThemes, openWebViews, selectChangelog, selectDetails, selectFeature, selectFeatures, selectTab };
|
|
309
326
|
}
|
|
310
327
|
declare namespace FileSystem {
|
|
311
328
|
export { chmod, createExecutable, createExecutableFrom, getTmpDir, mkdir, remove, writeFile };
|
|
@@ -349,11 +366,14 @@ declare namespace Search {
|
|
|
349
366
|
declare namespace Settings {
|
|
350
367
|
export { update };
|
|
351
368
|
}
|
|
369
|
+
declare namespace SettingsView {
|
|
370
|
+
export { clear, handleInput$2 as handleInput, handleScroll$1 as handleScroll, selectExtensions, selectTab$1 as selectTab, selectTextEditor, selectWorkspace, show$2 as show, useNextSearchValue, usePreviousSearchValue };
|
|
371
|
+
}
|
|
352
372
|
declare namespace SideBar {
|
|
353
373
|
export { hide, open$4 as open };
|
|
354
374
|
}
|
|
355
375
|
declare namespace SourceControl {
|
|
356
|
-
export { acceptInput, handleClickSourceControlButtons, handleInput$
|
|
376
|
+
export { acceptInput, handleClickSourceControlButtons, handleInput$3 as handleInput, selectIndex$5 as selectIndex };
|
|
357
377
|
}
|
|
358
378
|
declare namespace StatusBar {
|
|
359
379
|
export { update$1 as update };
|
|
@@ -395,6 +415,7 @@ export interface TestApi {
|
|
|
395
415
|
readonly RunAndDebug: typeof RunAndDebug,
|
|
396
416
|
readonly Search: typeof Search,
|
|
397
417
|
readonly Settings: typeof Settings,
|
|
418
|
+
readonly SettingsView: typeof SettingsView,
|
|
398
419
|
readonly SideBar: typeof SideBar,
|
|
399
420
|
readonly SourceControl: typeof SourceControl,
|
|
400
421
|
readonly StatusBar: typeof StatusBar,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lvce-editor/test-with-playwright",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.24.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "src/main.js",
|
|
6
6
|
"type": "module",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@lvce-editor/json-rpc": "^6.2.0",
|
|
20
20
|
"@lvce-editor/verror": "^1.7.0",
|
|
21
21
|
"minimist": "^1.2.8",
|
|
22
|
-
"@lvce-editor/test-with-playwright-worker": "2.
|
|
22
|
+
"@lvce-editor/test-with-playwright-worker": "2.24.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@types/jest": "^30.0.0",
|