Appendix
The Ultimate Guide to TypeScript Error Messages, Causes, and Solutions
This Appendix covers all the issues the authors encountered while writing this book, including (but not limited to) installation, configuration, and runtime errors. Each problem is followed by one or more causes, each with a solution. Problems with the same solution are grouped together. A good way to use this Appendix is to search for a small segment of the error detail copied from the terminal window, such as check if port.
Problem: Install default WDIO settings by passing “--yes” parameter still asks configuration questions
Cause: Missing -- parameter at the command prompt:
> npm init wdio . --yes
Solution: Use -- to pass the parameter to wdio:
> npm init wdio ...
Get Enhanced Test Automation with WebdriverIO now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.