-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for multiple configuration file formats(electron-builder) #819
Comments
Agreed, this should be a thing. |
@goosewobbler
|
By the way, when I implemented Option.2 experimentally, it seems to work, but a mysterious error occurs in the unit test of |
@mato533 ah yes using If you want to submit a PR I'll happily review and look at fixing the units. We should probably also add some new config fixtures for the |
@goosewobbler
|
Description
We are using
electron-builder
with a YAML formatted configuration file.When I tried to run E2E tests using this wonderful library, I realized that it only supports configuration files in json format.
Referring to the official documentation,
electron-builder
supports not onlyJson
but alsoYAML
andTOML
format files.I think it should also support automatic loading using configuration files other than Json.
Related code
wdio-electron-service/packages/@wdio_electron-utils/src/index.ts
Lines 182 to 193 in cf6ff61
Workaround
Specify the
appBinaryPath
option in my capabilities.The text was updated successfully, but these errors were encountered: