You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All our YAML files are written with flow scalar style as double quotes (").
Maestro Studio Desktop is forcing it's own style with single quotes ('). Officially all options are possible (double, single and no quotes), but it mentions double first :)
Even yourownexamples use double quotes.
It would be nice if Maestro Studio Desktop could re-use the already applied styling.
Even better if it could detect the presence of Prettier (in current of parent folders), which uses double quotes as default (with some exceptions).
Alternatively, add an setting for the teams preferred styling.
Input (double quotes "):
appId: your.app.id
---
- launchApp
- tapOn: "Text on the screen"
Output (single quotes '):
appId: your.app.id
---
- launchApp
- tapOn: 'Text on the screen'
Expected (double quotes "):
appId: your.app.id
---
- launchApp
- tapOn: "Text on the screen"