This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Notes | |
| You can pass options in the commandline, which would override the default config settings. | |
| <br/> | |
| Example: | |
| ```bash | |
| npx playwright test --headed | |
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3.7' | |
| services: | |
| elasticsearch: | |
| image: elasticsearch:7.9.2 | |
| ports: | |
| - '9200:9200' | |
| environment: | |
| - discovery.type=single-node | |
| ulimits: |