electron-playwright-helpers
Advanced tools
Comparing version 1.4.0 to 1.4.1
import { ElectronApplication } from 'playwright'; | ||
type DialogMethodStubPartial<T extends keyof Electron.Dialog> = { | ||
export type DialogMethodStub<T extends keyof Electron.Dialog> = { | ||
method: T; | ||
value: Awaited<ReturnType<Electron.Dialog[T]>>; | ||
}; | ||
export type DialogMethodStubPartial<T extends keyof Electron.Dialog> = { | ||
method: T; | ||
value: Partial<Awaited<ReturnType<Electron.Dialog[T]>>>; | ||
@@ -101,3 +105,2 @@ }; | ||
export declare function stubAllDialogs(app: ElectronApplication): Promise<void>; | ||
export {}; | ||
//# sourceMappingURL=dialog_helpers.d.ts.map |
{ | ||
"name": "electron-playwright-helpers", | ||
"version": "1.4.0", | ||
"version": "1.4.1", | ||
"description": "Helper functions for Electron end-to-end testing using Playwright", | ||
@@ -21,3 +21,4 @@ "main": "./dist/index.js", | ||
"version:minor": "npm version minor", | ||
"version:major": "npm version major" | ||
"version:major": "npm version major", | ||
"semantic-release": "semantic-release" | ||
}, | ||
@@ -49,2 +50,3 @@ "keywords": [ | ||
"prettier": "^2.8.3", | ||
"semantic-release": "^20.0.2", | ||
"typescript": "^4.9.4" | ||
@@ -51,0 +53,0 @@ }, |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
119034
1421
17