Created
November 22, 2025 11:33
-
-
Save pedinistar/c288755ade6386a1a1bd861fcbe07539 to your computer and use it in GitHub Desktop.
Gitignore file content for Playwright Setup
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
| # Playwright specific | |
| test-results/ | |
| playwright-report/ | |
| playwright/.cache/ | |
| *.mp4 | |
| *.webm | |
| trace.zip | |
| # Screenshots and videos from test runs | |
| screenshots/ | |
| videos/ | |
| downloads/ | |
| traces/ | |
| # Playwright state files | |
| .auth/ | |
| storage-state.json | |
| state.json | |
| # Test artifacts | |
| allure-results/ | |
| allure-report/ | |
| mochawesome-report/ | |
| # Node.js | |
| node_modules/ | |
| npm-debug.log* | |
| yarn-debug.log* | |
| yarn-error.log* | |
| package-lock.json | |
| yarn.lock | |
| pnpm-lock.yaml | |
| # Environment variables | |
| .env | |
| .env.local | |
| .env.*.local | |
| *.env | |
| # IDE specific | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| .DS_Store | |
| # OS files | |
| Thumbs.db | |
| Desktop.ini | |
| # Logs | |
| logs/ | |
| *.log | |
| # Coverage reports | |
| coverage/ | |
| .nyc_output/ | |
| *.lcov | |
| # Temporary files | |
| tmp/ | |
| temp/ | |
| *.tmp | |
| # Build outputs | |
| dist/ | |
| build/ | |
| out/ | |
| # Test data (optional - include if you have generated test data) | |
| # test-data/generated/ | |
| # APK files for mobile testing (if applicable) | |
| *.apk | |
| *.ipa | |
| # Appium specific (if you do mobile testing) | |
| appium-logs/ | |
| .appium/ | |
| # Playwright | |
| /playwright-report/ | |
| /blob-report/ | |
| /playwright/.cache/ | |
| /playwright/.auth/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment